Changeset 6704 for OpenSceneGraph/trunk/include/osg/Plane
- Timestamp:
- 05/20/07 13:45:09 (5 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/Plane (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/Plane
r6700 r6704 24 24 #include <vector> 25 25 26 #define OSG_USE_DOUBLE_PLANE 127 28 26 namespace osg { 29 27 … … 34 32 public: 35 33 36 #ifdef OSG_USE_DOUBLE_PLANE 34 #ifdef OSG_USE_FLOAT_PLANE 35 /** Type of Plane class.*/ 36 typedef float value_type; 37 typedef Vec3f Vec3_type; 38 typedef Vec4f Vec4_type; 39 #else 37 40 /** Type of Plane class.*/ 38 41 typedef double value_type; 39 42 typedef Vec3d Vec3_type; 40 43 typedef Vec4d Vec4_type; 41 #else42 /** Type of Plane class.*/43 typedef float value_type;44 typedef Vec3f Vec3_type;45 typedef Vec4f Vec4_type;46 44 #endif 47 45
