From 6bc1c27fe9a62b76ba12af3a6ae39d11785328ed Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 27 May 2011 11:18:44 +0000 Subject: [PATCH] Fixed indentation --- applications/osgconv/OrientationConverter.h | 24 ++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/applications/osgconv/OrientationConverter.h b/applications/osgconv/OrientationConverter.h index 1f9923541..bf2084034 100644 --- a/applications/osgconv/OrientationConverter.h +++ b/applications/osgconv/OrientationConverter.h @@ -8,23 +8,23 @@ class OrientationConverter { public : - OrientationConverter(void); - void setRotation( const osg::Vec3 &from, - const osg::Vec3 &to ); - void setRotation( float degrees, const osg::Vec3 &axis ); - void setTranslation( const osg::Vec3 &trans); - void setScale( const osg::Vec3 &trans); - + OrientationConverter(void); + void setRotation( const osg::Vec3 &from, + const osg::Vec3 &to ); + void setRotation( float degrees, const osg::Vec3 &axis ); + void setTranslation( const osg::Vec3 &trans); + void setScale( const osg::Vec3 &trans); + /** return the root of the updated subgraph as the subgraph * the node passed in my flatten during optimization.*/ - osg::Node* convert( osg::Node* node ); + osg::Node* convert( osg::Node* node ); private : - OrientationConverter( const OrientationConverter& ) {} - OrientationConverter& operator = (const OrientationConverter& ) { return *this; } + OrientationConverter( const OrientationConverter& ) {} + OrientationConverter& operator = (const OrientationConverter& ) { return *this; } - osg::Matrix R, T, S; - bool _trans_set; + osg::Matrix R, T, S; + bool _trans_set; }; #endif