| 186 | } |
| 187 | |
| 188 | void ExtrudedPolyList::plane(U32 v1, U32 v2, U32 v3) |
| 189 | { |
| 190 | mPoly.plane.set(mVertexList[v1].point, |
| 191 | mVertexList[v2].point, |
| 192 | mVertexList[v3].point); |
| 193 | |
| 194 | // We hope this isn't needed but we're leaving it in anyway -- BJG/EGH |
| 195 | mPoly.plane.normalizeSafe(); |
| 196 | } |
| 197 | |
| 198 | void ExtrudedPolyList::plane(const PlaneF& p) |
| 199 | { |
nothing calls this directly
no test coverage detected