From: <de...@us...> - 2004-01-01 19:42:32
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include In directory sc8-pr-cvs1:/tmp/cvs-serv26171 Modified Files: VirtualScene.h ObjectModel.h Log Message: see CHANGES.current Index: VirtualScene.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/VirtualScene.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** VirtualScene.h 24 Jul 2003 07:32:39 -0000 1.9 --- VirtualScene.h 1 Jan 2004 19:42:29 -0000 1.10 *************** *** 104,107 **** --- 104,112 ---- inline float getViewAngle() const { return m_ViewAngle; } void setViewAngle(float); + inline float getNearPlane() const {return m_NearPlane;} + void setNearPlane(float value); + inline float getAspect() const {return m_Aspect;} + void setAspect(float value); + void spinTheWorld(bool spin); *************** *** 123,126 **** --- 128,133 ---- float m_ViewDistance; float m_ViewAngle; + float m_NearPlane; // of the near view + float m_Aspect; // of the near view float m_FogStart; Index: ObjectModel.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/ObjectModel.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ObjectModel.h 21 Dec 2003 10:21:16 -0000 1.15 --- ObjectModel.h 1 Jan 2004 19:42:29 -0000 1.16 *************** *** 93,96 **** --- 93,97 ---- osg::ref_ptr<osg::Node> getModel() { return m_Model.get(); } osg::ref_ptr<osg::Node> getDebugMarkers() { return m_DebugMarkers.get(); } + osg::ref_ptr<osg::Node> getGearSprites() { return m_GearSprites.get(); } std::string getModelPath() const { return m_ModelPath.getSource(); } |