MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / getLeftTriPoints

Function getLeftTriPoints

source/MRMesh/MRMeshMath.cpp:20–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20void 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
30Vector3f triPoint( const MeshTopology & topology, const VertCoords & points, const MeshTriPoint & p )
31{

Callers 4

triPointFunction · 0.70
toTriPointFunction · 0.70
getClosestEdgeFunction · 0.70
leftCotanFunction · 0.70

Calls 1

getLeftTriVertsMethod · 0.45

Tested by

no test coverage detected