| 110 | } |
| 111 | |
| 112 | void test_cell_on_border( const geode::RegularGrid3D& grid ) |
| 113 | { |
| 114 | geode::OpenGeodeMeshException::test( |
| 115 | grid.is_cell_on_border( { { 0, 0, 0 } } ), |
| 116 | "Vertex is not on border where it should be." ); |
| 117 | geode::OpenGeodeMeshException::test( |
| 118 | grid.is_cell_on_border( { { 4, 8, 13 } } ), |
| 119 | "Vertex is not on border where it should be." ); |
| 120 | geode::OpenGeodeMeshException::test( |
| 121 | !grid.is_cell_on_border( { { 1, 2, 3 } } ), |
| 122 | "Vertex is on border where it should not be." ); |
| 123 | } |
| 124 | |
| 125 | void test_vertex_number( const geode::RegularGrid3D& grid ) |
| 126 | { |
nothing calls this directly
no test coverage detected