00001 00020 #ifndef SFVEC3F_H_ 00021 #define SFVEC3F_H_ 00022 00023 namespace vrml1 00024 { 00025 00026 class SFVec3f 00027 { 00028 public: 00029 SFVec3f(); 00030 00031 void setValues(float x0, float x1, float x2); 00032 00033 private: 00034 float m_x0; 00035 float m_x1; 00036 float m_x2; 00037 }; 00038 00039 } 00040 00041 #endif /*SFVEC3F_H_*/