]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGOffsetTransform.hxx
Add preliminary spot light animation
[simgear.git] / simgear / scene / model / SGOffsetTransform.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_OFFSET_TRASNFORM_HXX
23 #define SG_OFFSET_TRASNFORM_HXX
24
25 #include <osg/Transform>
26
27 class SGOffsetTransform : public osg::Transform {
28 public:
29   SGOffsetTransform(double scaleFactor = 1.0);
30   SGOffsetTransform(const SGOffsetTransform&,
31                     const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
32
33   META_Node(simgear, SGOffsetTransform);
34
35   double getScaleFactor() const { return _scaleFactor; };
36
37   void setScaleFactor(double scaleFactor)
38   {
39     _scaleFactor = scaleFactor;
40     _rScaleFactor = 1.0 / scaleFactor;
41   }
42   
43   virtual bool computeLocalToWorldMatrix(osg::Matrix& matrix,
44                                          osg::NodeVisitor* nv) const;
45   virtual bool computeWorldToLocalMatrix(osg::Matrix& matrix,
46                                          osg::NodeVisitor* nv) const;
47
48 private:
49   double _scaleFactor;
50   double _rScaleFactor;
51 };
52
53 #endif