removed unneeded stuff from makefile and added debug cflags
[MicroTrace.git] / Ray.cxx
1 #include "Ray.hxx"
2
3 Ray::Ray()
4 {
5 }
6
7 Ray::Ray(const Vec3f& org,
8 const Vec3f& dir)
9 {
10 }
11
12 Ray::~Ray()
13 {
14 }
15
16 Ray::Ray(const Ray& r)
17 {
18 }
19
20 Ray&
21 Ray::operator=(const Ray& r)
22 {
23 return *this;
24 }
25
26 const Vec3f&
27 Ray::origin() const
28 {
29 return Vec3f();
30 }
31
32 const Vec3f&
33 Ray::direction() const
34 {
35 return Vec3f();
36 }
37
38 float
39 Ray::t() const
40 {
41 return 0.0f;
42 }
This page took 0.046905 seconds and 5 git commands to generate.