fix: more /* */ inside doxygen blocks in octree/boolean_mesh
CI / Build & Test (push) Failing after 1m31s
CI / Release Build (push) Failing after 31s

This commit is contained in:
茂之钳
2026-07-24 11:17:46 +00:00
parent 980cb32468
commit 089442fb69
4 changed files with 39 additions and 53 deletions
+2 -2
View File
@@ -105,9 +105,9 @@ HalfedgeMesh mesh_sym_diff(const HalfedgeMesh& a, const HalfedgeMesh& b);
*
* @code{.cpp}
* // 裁剪 cube 外部的 sphere 面片
* auto clipped = clip_mesh(sphere, cube, /*invert_b=*/false);
* auto clipped = clip_mesh(sphere, cube, false // invert_b);
* // 保留 cube 内部的 sphere 面片
* auto inner = clip_mesh(sphere, cube, /*invert_b=*/true);
* auto inner = clip_mesh(sphere, cube, true // invert_b);
* @endcode
*
* @see mesh_difference, is_point_inside_mesh