Used to store each triangle - made public because of the templated function
| 93 | // Used to store each triangle - made public because of the |
| 94 | // templated function |
| 95 | class Triangle |
| 96 | { |
| 97 | public: |
| 98 | vtkIdType PointIndex[3]; |
| 99 | vtkIdType ReferredByTetra[2]; |
| 100 | double P1X, P1Y; |
| 101 | double P2X, P2Y; |
| 102 | double Denominator; |
| 103 | double A, B, C, D; |
| 104 | Triangle* Next; |
| 105 | }; |
| 106 | |
| 107 | // Used to store each intersection for the pixel rays - made |
| 108 | // public because of the templated function |
no outgoing calls
no test coverage detected