Changeset 73 for osgVisual/include
- Timestamp:
- Jul 24, 2010, 10:48:02 AM (14 years ago)
- Location:
- osgVisual/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/dataIO/dataIO_transportContainer.h
r70 r73 18 18 #include <osg/Object> 19 19 #include <osg/Matrixd> 20 #include <osg/Vec3d> 20 21 21 22 #include <dataIO_executer.h> … … 34 35 frameID(tC_.frameID), 35 36 viewMatrix(tC_.viewMatrix), 36 projectionMatrix(tC_.projectionMatrix), 37 eye(tC_.eye), 38 center(tC_.center), 39 up(tC_.up), 37 40 executer(tC_.executer), 38 41 ioSlots(tC_.ioSlots){} … … 49 52 int frameID; 50 53 osg::Matrixd viewMatrix; 51 osg:: Matrixd projectionMatrix;54 osg::Vec3d eye, center, up; 52 55 executerList executer; 53 56 slotList ioSlots; … … 58 61 void setFrameID(int frameID_ ){frameID=frameID_;} 59 62 60 void setViewMatrix(const osg::Matrixd& viewMatrix_){viewMatrix =viewMatrix_;}63 void setViewMatrix(const osg::Matrixd& viewMatrix_){viewMatrix = viewMatrix_;} 61 64 const osg::Matrixd& getViewMatrix() const {return viewMatrix;} 62 65 63 void setProjectionMatrix(const osg::Matrixd& projectionMatrix_){projectionMatrix=projectionMatrix_;} 64 const osg::Matrixd& getProjectionMatrix() const {return projectionMatrix;} 66 void setEye(const osg::Vec3d& eye_) { eye = eye_; } 67 const osg::Vec3d& getEye() const { return eye; } 68 69 void setCenter(const osg::Vec3d& center_) { center = center_; } 70 const osg::Vec3d& getCenter() const { return center; } 71 72 void setUp(const osg::Vec3d& up_) { up = up_; } 73 const osg::Vec3d& getUp() const { return up; } 65 74 66 75 void setExecuter(const executerList& executer_) {executer=executer_;} -
osgVisual/include/dataIO/visual_dataIO.h
r70 r73 152 152 bool isStandalone(){if (clusterMode==osgVisual::dataIO_cluster::STANDALONE) return true; else return false;}; 153 153 154 155 154 // SLOT Access functions 156 155 void* getSlotPointer(std::string slotName_, osgVisual::dataIO_slot::dataDirection direction_, osgVisual::dataIO_slot::varType variableTyp_ ); -
osgVisual/include/extLink/manip_extLink.h
r55 r73 24 24 25 25 /** 26 * \brief This class is a free spacemouse manipulator. It uses the 3DConnexion SpaceNavigator, which interface is implemented in manip_spaceMouse.h26 * \brief This class is a camera manipulator based slots without objects. 27 27 * 28 28 * @author Torben Dannhauer
Note: See TracChangeset
for help on using the changeset viewer.