]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGScaleTransform.hxx
Add preliminary spot light animation
[simgear.git] / simgear / scene / model / SGScaleTransform.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2006-2007 Mathias Froehlich 
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef SG_SCALE_TRANSFORM_HXX
23 #define SG_SCALE_TRANSFORM_HXX
24
25 #include <osg/Transform>
26 #include <simgear/math/SGMath.hxx>
27
28 class SGScaleTransform : public osg::Transform {
29 public:
30   SGScaleTransform();
31   SGScaleTransform(const SGScaleTransform&,
32                    const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
33
34   META_Node(simgear, SGScaleTransform);
35
36   void setCenter(const SGVec3f& center)
37   { setCenter(toVec3d(center)); }
38   void setCenter(const SGVec3d& center)
39   { _center = center; dirtyBound(); }
40   const SGVec3d& getCenter() const
41   { return _center; }
42
43   void setScaleFactor(const SGVec3d& scaleFactor)
44   {
45     double boundScale = normI(scaleFactor);
46     if (_boundScale < boundScale || 5*boundScale < _boundScale) {
47       _boundScale = boundScale;
48       dirtyBound();
49     }
50     _scaleFactor = scaleFactor;
51   }
52   void setScaleFactor(double scaleFactor)
53   { 
54     double boundScale = fabs(scaleFactor);
55     if (_boundScale < boundScale || 5*boundScale < _boundScale) {
56       _boundScale = boundScale;
57       dirtyBound();
58     }
59     _scaleFactor = SGVec3d(scaleFactor, scaleFactor, scaleFactor);
60   }
61   const SGVec3d& getScaleFactor() const
62   { return _scaleFactor; }
63
64
65   virtual bool computeLocalToWorldMatrix(osg::Matrix& matrix,
66                                          osg::NodeVisitor* nv) const;
67   virtual bool computeWorldToLocalMatrix(osg::Matrix& matrix,
68                                          osg::NodeVisitor* nv) const;
69   virtual osg::BoundingSphere computeBound() const;
70
71 private:
72   SGVec3d _center;
73   SGVec3d _scaleFactor;
74   mutable double _boundScale;
75 };
76
77 #endif