~ubuntu-branches/debian/experimental/openscenegraph/experimental

« back to all changes in this revision

Viewing changes to OpenSceneGraph/include/osgAnimation/StackedScaleElement

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Luaces
  • Date: 2010-05-03 21:42:01 UTC
  • mfrom: (1.1.9 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100503214201-iy060qxb94vsfv87
Tags: 2.8.3-3
* Added README.source. Thanks Manuel Montecelo.
* Removed FindGDAL.cmake file supplied by upstream since it does not
  detect current libgdal1-1.6.0. The script provided by CMake works
  fine.
* Removed openthreads-doc since OpenThreads documentation is shared with
  OpenSceneGraph's, hence this package was empty.
* Now ccache handling is being done automatically by CMake.
* Drop conflict dependencies with previous versions to let them coexist
  with current ones (Closes: #580079 #580081).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*-c++-*- 
 
2
 *  Copyright (C) 2009 Cedric Pinson <cedric.pinson@plopbyte.net>
 
3
 *
 
4
 * This library is open source and may be redistributed and/or modified under  
 
5
 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or 
 
6
 * (at your option) any later version.  The full license is in LICENSE file
 
7
 * included with this distribution, and on the openscenegraph.org website.
 
8
 * 
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 
12
 * OpenSceneGraph Public License for more details.
 
13
 */
 
14
 
 
15
#ifndef OSGANIMATION_STACKED_SCALE_ELEMENT
 
16
#define OSGANIMATION_STACKED_SCALE_ELEMENT 1
 
17
 
 
18
#include <osg/Object>
 
19
#include <osgAnimation/Export>
 
20
#include <osgAnimation/StackedTransformElement>
 
21
#include <osgAnimation/Target>
 
22
 
 
23
namespace osgAnimation
 
24
{
 
25
 
 
26
    class OSGANIMATION_EXPORT StackedScaleElement : public StackedTransformElement
 
27
    {
 
28
    public:
 
29
        META_Object(osgAnimation, StackedScaleElement)
 
30
 
 
31
        StackedScaleElement();
 
32
        StackedScaleElement(const StackedScaleElement&, const osg::CopyOp&);
 
33
        StackedScaleElement(const std::string& name, const osg::Vec3& scale = osg::Vec3(1,1,1));
 
34
        StackedScaleElement(const osg::Vec3& scale);
 
35
 
 
36
        void applyToMatrix(osg::Matrix& matrix) const;
 
37
        osg::Matrix getAsMatrix() const;
 
38
        bool isIdentity() const;
 
39
        void update();
 
40
        const osg::Vec3& getScale() const;
 
41
        void setScale(const osg::Vec3& scale);
 
42
 
 
43
        virtual Target* getOrCreateTarget();
 
44
        virtual Target* getTarget();
 
45
        virtual const Target* getTarget() const;
 
46
 
 
47
    protected:
 
48
        osg::Vec3 _scale;
 
49
        osg::ref_ptr<Vec3Target> _target;
 
50
    };
 
51
 
 
52
 
 
53
}
 
54
 
 
55
#endif
 
56