vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Helper.h
Go to the documentation of this file.
1 #ifndef Helper_h
2 #define Helper_h
3 #include <osg/Vec3>
4 #include <osg/Quat>
5 
6 #include "NXU_helper.h"
7 
8 NxVec3 ToNxVec3(osg::Vec3 vec);
9 osg::Vec3 ToosgVec3(NxVec3 vec);
10 
11 NxQuat ToNxQuat(osg::Quat);
12 osg::Quat ToosgQuat(NxQuat quat);
13 
14 const char* NXUFTtoa(NXU::NXU_FileType fileType);
15 
16 #endif