Skip to content

Commit

Permalink
bugfix: failing assert in test003a
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 6, 2024
1 parent 661f6d7 commit 18d566d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/TestLibbulletjme.java
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ protected Vector3f locateSupport(
Assert.assertEquals(4, hull.getShapeType());
Assert.assertTrue(hull.isPolyhedral());
Assert.assertEquals(1.772f, hull.maxRadius(), 0.001f);
Assert.assertEquals(4.621f, hull.scaledVolume(), 0.001f);
Assert.assertEquals(4.621f, hull.scaledVolume(), 0.002f);
buf = DebugShapeFactory.getDebugTriangles(
hull, DebugShapeFactory.lowResolution);
Assert.assertEquals(720, buf.capacity());
Expand Down

0 comments on commit 18d566d

Please sign in to comment.