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

Class Data

source/MRMesh/MRObjectLoad.cpp:46–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 const float sharpAngleCos = std::cos( sharpAngle );
45
46 struct Data
47 {
48 double sumDblArea = 0;
49 double sumSharpDblArea = 0;
50 Data operator + ( const Data & b ) const
51 {
52 return { sumDblArea + b.sumDblArea, sumSharpDblArea + b.sumSharpDblArea };
53 }
54 };
55
56 auto total = parallel_deterministic_reduce(
57 tbb::blocked_range( 0_ue, UndirectedEdgeId{ mesh.topology.undirectedEdgeSize() } ),

Callers 1

detectFlatShadingFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected