#include "dxstdafx.h" #include "Intersectable.hpp" Intersectable::Intersectable() { lastTestedRayId = 0; } Intersectable::Intersectable(std::istream& isc, Material** materialTable, int nMaterials) { lastTestedRayId = 0; } Intersectable::~Intersectable() { } float Intersectable::getSurfaceArea() { return 1.0f; } void Intersectable::sampleSurface(Radion& radion) { }