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

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