PanoramaViewer
 All Classes Namespaces Files Functions Variables Macros Pages
Vector4.h
Go to the documentation of this file.
1 /*
2  * Vector4.h
3  *
4  * Created on: 19 juin 2013
5  * Author: hallison
6  */
7 
8 #ifndef VECTOR4_H_
9 #define VECTOR4_H_
10 
11 namespace LayerSceneGraph {
12 
13 class Vector4 {
14 private:
15  GLfloat vector[4];
16 public:
17  Vector4();
18  virtual ~Vector4();
19 
20  Vector3 inverse();
21 
26 
27  GLfloat *values();
28 
29 };
30 
31 } /* namespace LayerSceneGraph */
32 #endif /* VECTOR4_H_ */