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

Function dirDblArea

source/MRMesh/MRMeshMath.cpp:480–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

478}
479
480Vector3f dirDblArea( const MeshTopology & topology, const VertCoords & points, VertId v )
481{
482 Vector3f sum;
483 for ( EdgeId e : orgRing( topology, v ) )
484 {
485 if ( topology.left( e ).valid() )
486 {
487 sum += leftDirDblArea( topology, points, e );
488 }
489 }
490 return sum;
491}
492
493Vector3f normal( const MeshTopology & topology, const VertCoords & points, const MeshTriPoint & p )
494{

Callers 3

dirDblAreasFunction · 0.70
projAreaFunction · 0.70
dirAreaFunction · 0.70

Calls 4

orgRingFunction · 0.85
leftDirDblAreaFunction · 0.85
leftMethod · 0.80
validMethod · 0.45

Tested by

no test coverage detected