| 71 | } |
| 72 | |
| 73 | void test_bounding_box( const geode::PointSet3D& point_set ) |
| 74 | { |
| 75 | geode::Point3D answer_min{ { 0.0, 0.0, -1.2 } }; |
| 76 | geode::Point3D answer_max{ { 2.3, 9.4, 6.7 } }; |
| 77 | geode::OpenGeodeMeshException::test( |
| 78 | point_set.bounding_box().min() == answer_min, |
| 79 | "Wrong computation of bounding box (min)" ); |
| 80 | geode::OpenGeodeMeshException::test( |
| 81 | point_set.bounding_box().max() == answer_max, |
| 82 | "Wrong computation of bounding box (max)" ); |
| 83 | } |
| 84 | |
| 85 | void test_create_vertex_attribute( const geode::PointSet3D& point_set ) |
| 86 | { |
no test coverage detected