source:
GTP/trunk/App/Demos/Illum/pathmap/Ray.hpp
@
2197
Revision 2197, 216 bytes checked in by szirmay, 18 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[2197] | 1 | #pragma once |
2 | ||
3 | /*! | |
4 | \brief Class that describes a ray to be traced. | |
5 | */ | |
6 | class Ray{ | |
7 | public: | |
8 | bool isShadowRay; | |
9 | Vector origin; | |
10 | ||
11 | //! must be normalised | |
12 | Vector dir; | |
13 | ||
14 | //! must be initialised and unique | |
15 | int id; | |
16 | }; |
Note: See TracBrowser
for help on using the repository browser.