computes the center of given edge
| 43 | |
| 44 | /// computes the center of given edge |
| 45 | [[nodiscard]] inline Vector3f edgeCenter( const MeshTopology & topology, const VertCoords & points, UndirectedEdgeId e ) |
| 46 | { |
| 47 | return edgePoint( topology, points, e, 0.5f ); |
| 48 | } |
| 49 | |
| 50 | /// returns three points of left face of e: v0 = orgPnt( e ), v1 = destPnt( e ) |
| 51 | MRMESH_API void getLeftTriPoints( const MeshTopology & topology, const VertCoords & points, EdgeId e, Vector3f & v0, Vector3f & v1, Vector3f & v2 ); |
no test coverage detected