code for assignment 4, gitignored *.ppm, *.png
[MicroTrace.git] / Box.cxx
diff --git a/Box.cxx b/Box.cxx
new file mode 100644 (file)
index 0000000..ef9f750
--- /dev/null
+++ b/Box.cxx
@@ -0,0 +1,57 @@
+#include "Box.hxx"
+
+Box::Box()
+{
+}
+
+Box::~Box()
+{
+}
+
+Box::Box(const Box& b)
+{
+}
+
+Box&
+Box::operator=(const Box& b)
+{
+  return *this;
+}
+
+void
+Box::Clear()
+{
+}
+
+void
+Box::Extend(const Vec3f& a)
+{
+}
+
+void 
+Box::Extend(const Box& box)
+{
+}
+
+bool
+Box::Overlaps(const Box& b) const
+{
+  return false;
+}
+
+void
+Box::Clip(const Ray& ray, float& tnear, float& tfar) const
+{
+}
+
+const Vec3f&
+Box::min() const
+{
+  return m_min;
+}
+
+const Vec3f&
+Box::max() const
+{
+  return m_max;
+}
This page took 0.02552 seconds and 4 git commands to generate.