Used to store each intersection for the pixel rays - made public because of the templated function
| 107 | // Used to store each intersection for the pixel rays - made |
| 108 | // public because of the templated function |
| 109 | class Intersection |
| 110 | { |
| 111 | public: |
| 112 | Triangle* TriPtr; |
| 113 | double Z; |
| 114 | Intersection* Next; |
| 115 | }; |
| 116 | |
| 117 | /** |
| 118 | * Is the point x, y, in the given triangle? Public for |
no outgoing calls