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