19 lines
285 B
C++
Executable File
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)
|
|
{
|
|
}
|