vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BoundingVol.h
Go to the documentation of this file.
1 
11 #ifndef _VRECKO_CLOUDS_BOUNDINGVOL_H
12 #define _VRECKO_CLOUDS_BOUNDINGVOL_H
13 
14 #include <osg/Vec3f>
15 
21 {
22 
23 public:
24  // Attributes
25  osg::Vec3f min; // min x, y, z values of the object.
26  osg::Vec3f max; // max x, y, z values of the object.
27  float radius,
28  side,
29  halfside;
30 };
31 
32 #endif