source: GTP/trunk/App/Demos/Illum/pathmap/Intersectable.cpp @ 2197

Revision 2197, 374 bytes checked in by szirmay, 17 years ago (diff)
Line 
1#include "dxstdafx.h"
2#include "Intersectable.hpp"
3
4Intersectable::Intersectable()
5{
6        lastTestedRayId = 0;
7}
8
9Intersectable::Intersectable(std::istream& isc, Material** materialTable, int nMaterials)
10{
11        lastTestedRayId = 0;
12}
13
14Intersectable::~Intersectable()
15{
16}
17
18float Intersectable::getSurfaceArea()
19{
20        return 1.0f;
21}
22
23void Intersectable::sampleSurface(Radion& radion)
24{
25}
Note: See TracBrowser for help on using the repository browser.