Files
OpenSceneGraph/src/osgWrappers/serializers/osg/Projection.cpp
Robert Osfield 219696f1ee From Wang Rui, new native binary/ascii format infrastructure and wrappers.
From Robert Osfield, refactor of Wang Rui's original osg2 into 3 parts - parts placed into osgDB, the ReaderWriter placed into src/osg/Plugin/osg and wrappers into src/osgWrappers/serializers/osg
2010-01-20 20:13:33 +00:00

13 lines
388 B
C++
Executable File

#include <osg/Projection>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( Projection,
new osg::Projection,
osg::Projection,
"osg::Object osg::Node osg::Group osg::Projection" )
{
ADD_MATRIX_SERIALIZER( Matrix, osg::Matrix() ); // _matrix
}