00001 00020 #ifndef SFMATRIX_H_ 00021 #define SFMATRIX_H_ 00022 00023 #include <vector> 00024 00025 using namespace std; 00026 00027 namespace vrml1 00028 { 00029 00030 class SFMatrix 00031 { 00032 public: 00033 SFMatrix(); 00034 00035 void setValues(vector<float> vf); 00036 00037 private: 00038 float m_Matrix[16]; 00039 }; 00040 00041 } 00042 00043 #endif /*SFMATRIX_H_*/