| 81 | } |
| 82 | |
| 83 | void testLargeComponents( void ) |
| 84 | { |
| 85 | CreatedMesh m = createMesh(); |
| 86 | |
| 87 | MR_FaceBitSet* components = MR_MeshComponents_getLargeByAreaComponents_3( m.part, 0.1f, NULL ); |
| 88 | TEST_ASSERT( MR_FaceBitSet_test( components, (MR_FaceId){0} ) ); |
| 89 | TEST_ASSERT( !MR_FaceBitSet_test( components, (MR_FaceId){12} ) ); |
| 90 | |
| 91 | MR_FaceBitSet_Destroy( components ); |
| 92 | |
| 93 | destroyMesh( m ); |
| 94 | } |
| 95 | |
| 96 | void testLargestComponent( void ) |
| 97 | { |
nothing calls this directly
no test coverage detected