Changeset 75 for osgVisual/include/dataIO
- Timestamp:
- Jul 25, 2010, 1:46:29 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/dataIO/dataIO_transportContainer.h
r73 r75 35 35 frameID(tC_.frameID), 36 36 viewMatrix(tC_.viewMatrix), 37 eye(tC_.eye),38 center(tC_.center),39 up(tC_.up),40 37 executer(tC_.executer), 41 38 ioSlots(tC_.ioSlots){} 42 39 dataIO_transportContainer(){} 43 40 virtual ~dataIO_transportContainer(){} 44 45 46 41 47 42 … … 52 47 int frameID; 53 48 osg::Matrixd viewMatrix; 54 osg::Vec3d eye, center, up;55 49 executerList executer; 56 50 slotList ioSlots; … … 64 58 const osg::Matrixd& getViewMatrix() const {return viewMatrix;} 65 59 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; }74 75 60 void setExecuter(const executerList& executer_) {executer=executer_;} 76 61 const executerList& getExecuter() const {return executer;} … … 78 63 void setIOSlots(const slotList& ioSlots_) {ioSlots=ioSlots_;} 79 64 const slotList& getIOSlots() const {return ioSlots;} 80 81 65 82 66
Note: See TracChangeset
for help on using the changeset viewer.