PanoramaViewer
 All Classes Namespaces Files Functions Variables Macros Pages
Ray.h
Go to the documentation of this file.
1 /*
2  * Ray.h
3  *
4  * Created on: 29 juin 2013
5  * Author: hallison
6  */
7 
8 #ifndef RAY_H_
9 #define RAY_H_
10 
11 #include "Math/Vector3.h"
12 
13 namespace LayerSceneGraph {
14 
15 class Ray {
16 private:
19 public:
20  Ray(Vector3 s, Vector3 dir);
21  virtual ~Ray();
22 
25 };
26 
27 } /* namespace LayerSceneGraph */
28 #endif /* RAY_H_ */