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

Function gatherEdgeInfo

source/MRMesh/MRMeshBoolean.cpp:69–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void gatherEdgeInfo( const MeshTopology& topology, EdgeId e, FaceBitSet& faces, VertBitSet& orgs, VertBitSet& dests )
70{
71 if ( auto l = topology.left( e ) )
72 faces.set( l );
73 if ( auto r = topology.right( e ) )
74 faces.set( r );
75 orgs.set( topology.org( e ) );
76 dests.set( topology.dest( e ) );
77}
78
79} //anonymous namespace
80

Callers 1

getBooleanPointsFunction · 0.85

Calls 5

leftMethod · 0.80
rightMethod · 0.80
setMethod · 0.45
orgMethod · 0.45
destMethod · 0.45

Tested by

no test coverage detected