| 42 | } |
| 43 | |
| 44 | MeshTriPoint toTriPoint( const MeshTopology & topology, const VertCoords & points, FaceId f, const Vector3f & p ) |
| 45 | { |
| 46 | auto e = topology.edgeWithLeft( f ); |
| 47 | Vector3f v0, v1, v2; |
| 48 | getLeftTriPoints( topology, points, e, v0, v1, v2 ); |
| 49 | return MeshTriPoint( e, p, v0, v1, v2 ); |
| 50 | } |
| 51 | |
| 52 | MeshTriPoint toTriPoint( const MeshTopology & topology, const VertCoords & points, const PointOnFace & p ) |
| 53 | { |
no test coverage detected