source: GTP/branches/IllumWPdeliver2008dec/IlluminationWP/demos/Standalone/PathMap [DirectX]/Intersectable.cpp @ 3255

Revision 3255, 374 bytes checked in by szirmay, 15 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.