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

Function convertIntFloatAllVerts

source/MRMesh/MRMeshBoolean.cpp:81–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79} //anonymous namespace
80
81void convertIntFloatAllVerts( Mesh & mesh, const CoordinateConverters& conv )
82{
83 MR_TIMER;
84 BitSetParallelFor( mesh.topology.getValidVerts(), [&]( VertId v )
85 {
86 mesh.points[v] = conv.toFloat( conv.toInt( mesh.points[v] ) );
87 } );
88}
89
90BooleanResult booleanImpl( Mesh&& meshA, Mesh&& meshB, BooleanOperation operation, const BooleanParameters& params, BooleanInternalParameters intParams );
91

Callers 2

selfBooleanFunction · 0.85
booleanImplFunction · 0.85

Calls 1

BitSetParallelForFunction · 0.85

Tested by

no test coverage detected