code for assignment 4, gitignored *.ppm, *.png
[MicroTrace.git] / Box.cxx
1 #include "Box.hxx"
2
3 Box::Box()
4 {
5 }
6
7 Box::~Box()
8 {
9 }
10
11 Box::Box(const Box& b)
12 {
13 }
14
15 Box&
16 Box::operator=(const Box& b)
17 {
18 return *this;
19 }
20
21 void
22 Box::Clear()
23 {
24 }
25
26 void
27 Box::Extend(const Vec3f& a)
28 {
29 }
30
31 void
32 Box::Extend(const Box& box)
33 {
34 }
35
36 bool
37 Box::Overlaps(const Box& b) const
38 {
39 return false;
40 }
41
42 void
43 Box::Clip(const Ray& ray, float& tnear, float& tfar) const
44 {
45 }
46
47 const Vec3f&
48 Box::min() const
49 {
50 return m_min;
51 }
52
53 const Vec3f&
54 Box::max() const
55 {
56 return m_max;
57 }
This page took 0.042903 seconds and 5 git commands to generate.