| 83 | } |
| 84 | |
| 85 | void test_create_vertex_attribute( const geode::PointSet3D& point_set ) |
| 86 | { |
| 87 | auto attribute = |
| 88 | point_set.vertex_attribute_manager() |
| 89 | .find_or_create_attribute< geode::ConstantAttribute, bool >( |
| 90 | "test", true ); |
| 91 | geode::OpenGeodeMeshException::test( |
| 92 | attribute->value() == true, "PointSet attribute value should be true" ); |
| 93 | } |
| 94 | |
| 95 | void test_delete_vertex( |
| 96 | const geode::PointSet3D& point_set, geode::PointSetBuilder3D& builder ) |