source: GTP/trunk/App/Demos/Illum/pathmap/Ray.hpp @ 2197

Revision 2197, 216 bytes checked in by szirmay, 17 years ago (diff)
Line 
1#pragma once
2
3/*!
4\brief Class that describes a ray to be traced.
5*/
6class Ray{
7public:
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.