| 79 | } //anonymous namespace |
| 80 | |
| 81 | void 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 | |
| 90 | BooleanResult booleanImpl( Mesh&& meshA, Mesh&& meshB, BooleanOperation operation, const BooleanParameters& params, BooleanInternalParameters intParams ); |
| 91 |
no test coverage detected