| 6 | { |
| 7 | |
| 8 | TEST( MRMesh, GridSampling ) |
| 9 | { |
| 10 | auto sphereMesh = makeUVSphere(); |
| 11 | auto numVerts = sphereMesh.topology.numValidVerts(); |
| 12 | auto samples = verticesGridSampling( sphereMesh, 0.5f ); |
| 13 | auto sampleCount = samples->count(); |
| 14 | EXPECT_LE( sampleCount, numVerts ); |
| 15 | } |
| 16 | |
| 17 | } // namespace MR |
nothing calls this directly
no test coverage detected