fix: more /* */ inside doxygen blocks in octree/boolean_mesh
This commit is contained in:
@@ -283,10 +283,12 @@ TEST(NurbsOpsTest, BlendPlanarSurfaces) {
|
||||
Point3D pa = blend.evaluate(0.0, 0.5);
|
||||
Point3D pb = blend.evaluate(1.0, 0.5);
|
||||
|
||||
// pa should be near x=0.5 (1.0 - 0.5 offset inward)
|
||||
// pa should be near x=0.5 (1.0 - 0.5 inward along tangent)
|
||||
EXPECT_NEAR(pa.x(), 0.5, 1e-6);
|
||||
// pb should be near x=0.5 (0.0 + 0.5 offset inward)
|
||||
EXPECT_NEAR(pa.z(), 0.0, 1e-6); // plane1 z-level
|
||||
// pb should be near x=0.5 (0.0 + 0.5 inward along tangent)
|
||||
EXPECT_NEAR(pb.x(), 0.5, 1e-6);
|
||||
EXPECT_NEAR(pb.z(), 2.0, 1e-6); // plane2 z-level
|
||||
}
|
||||
|
||||
// ===========================================================================
|
||||
|
||||
Reference in New Issue
Block a user