Changeset 55 for osgVisual/include
- Timestamp:
- May 29, 2010, 11:52:47 PM (14 years ago)
- Location:
- osgVisual/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/core/visual_core.h
r32 r55 130 130 */ 131 131 osg::ref_ptr<NodeTrackerSpaceMouse> mouseTrackerManip; 132 133 /** 134 * Space mouse hardware driver instance 135 */ 136 SpaceMouse* mouse; 132 137 #endif 133 138 … … 137 142 osg::ref_ptr<objectMountedManipulator> objectMountedCameraManip; 138 143 139 /**140 * Space mouse hardware driver instance141 */142 SpaceMouse* mouse;143 144 144 145 #ifdef USE_SKY_SILVERLINING -
osgVisual/include/extLink/manip_extLink.h
r32 r55 29 29 * @date Aug 2009 30 30 */ 31 class extLinkManipulator : public osgGA:: MatrixManipulator31 class extLinkManipulator : public osgGA::CameraManipulator 32 32 { 33 33 public: -
osgVisual/include/manip_ObjectMounted/manip_objectMounted.h
r32 r55 16 16 */ 17 17 18 #include <osgGA/ MatrixManipulator>18 #include <osgGA/CameraManipulator> 19 19 20 20 #include <osg/Quat> … … 33 33 * @date Aug 2009 34 34 */ 35 class objectMountedManipulator : public osgGA:: MatrixManipulator35 class objectMountedManipulator : public osgGA::CameraManipulator 36 36 { 37 37 public: -
osgVisual/include/manip_Spacemouse/manip_freeSpaceMouse.h
r32 r55 20 20 21 21 // OSG includes 22 #include <osgGA/ MatrixManipulator>22 #include <osgGA/CameraManipulator> 23 23 #include <osgGA/GUIEventAdapter> 24 24 #include <osgGA/GUIActionAdapter> … … 39 39 * @date Aug 2009 40 40 */ 41 class FreeManipulator : public osgGA:: MatrixManipulator41 class FreeManipulator : public osgGA::CameraManipulator 42 42 { 43 43 public: -
osgVisual/include/manip_Spacemouse/manip_nodeTrackerSpaceMouse.h
r32 r55 15 15 */ 16 16 17 #include <osgGA/ MatrixManipulator>17 #include <osgGA/OrbitManipulator> 18 18 19 19 #include <osg/ObserverNodePath> … … 49 49 * @date Apr 2010 50 50 */ 51 class NodeTrackerSpaceMouse : public osgGA:: MatrixManipulator51 class NodeTrackerSpaceMouse : public osgGA::OrbitManipulator 52 52 { 53 53 public: -
osgVisual/include/object/visual_object.h
r32 r55 27 27 #include <osgText/Text> 28 28 29 #include <osgGA/ MatrixManipulator>29 #include <osgGA/CameraManipulator> 30 30 31 31 #include <object_updater.h>
Note: See TracChangeset
for help on using the changeset viewer.