| 18 | } |
| 19 | |
| 20 | void getLeftTriPoints( const MeshTopology & topology, const VertCoords & points, EdgeId e, Vector3f & v0, Vector3f & v1, Vector3f & v2 ) |
| 21 | { |
| 22 | VertId a, b, c; |
| 23 | |
| 24 | topology.getLeftTriVerts( e, a, b, c ); |
| 25 | v0 = points[a]; |
| 26 | v1 = points[b]; |
| 27 | v2 = points[c]; |
| 28 | } |
| 29 | |
| 30 | Vector3f triPoint( const MeshTopology & topology, const VertCoords & points, const MeshTriPoint & p ) |
| 31 | { |
no test coverage detected