Changeset 11164 for OpenSceneGraph/trunk/include/osgSim/SphereSegment
- Timestamp:
- 03/05/10 13:55:08 (3 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osgSim/SphereSegment (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgSim/SphereSegment
r9409 r11164 195 195 @see DrawMask 196 196 */ 197 void setDrawMask( DrawMaskdm);197 void setDrawMask(int dm); 198 198 199 199 /** Get the DrawMask */ 200 DrawMaskgetDrawMask() const { return _drawMask; }200 int getDrawMask() const { return _drawMask; } 201 201 202 202 /** Set the color of the surface. */ … … 306 306 307 307 // Draw details 308 DrawMask_drawMask;309 osg::Vec4 _surfaceColor;310 osg::Vec4 _spokeColor;311 osg::Vec4 _edgeLineColor;312 osg::Vec4 _planeColor;308 int _drawMask; 309 osg::Vec4 _surfaceColor; 310 osg::Vec4 _spokeColor; 311 osg::Vec4 _edgeLineColor; 312 osg::Vec4 _planeColor; 313 313 }; 314 314
