fart/shapes/Shape.cc
Josh Holtrop 56278a8337 changed IntersectionList into a class so i could add merge()
git-svn-id: svn://anubis/fart/trunk@148 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-02-23 21:39:56 +00:00

19 lines
285 B
C++
Executable File

#include "Shape.h"
Shape::Shape()
{
m_transparency = 0.0;
m_material = new Material(Material::white);
}
Shape::~Shape()
{
}
Shape::IntersectionList
Shape::IntersectionList::merge(const IntersectionList & other,
const Vector & startPoint)
{
}