diff --git a/test/python_unit/geometric_shapes.py b/test/python_unit/geometric_shapes.py index b64850e59..45f551fed 100644 --- a/test/python_unit/geometric_shapes.py +++ b/test/python_unit/geometric_shapes.py @@ -156,6 +156,11 @@ def test_cone(self): Ic_ref = np.diag([Icx_ref, Icx_ref, Iz_ref]) self.assertApprox(Ic, Ic_ref) + def test_BVH(self): + bvh = hppfcl.BVHModelOBBRSS() + self.assertEqual(bvh.num_vertices, 0) + self.assertEqual(bvh.vertices().shape, (0, 3)) + def test_convex(self): verts = hppfcl.StdVec_Vec3f() faces = hppfcl.StdVec_Triangle()