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
+1 -1
View File
@@ -40,7 +40,7 @@ template <typename T> struct OctreeData;
* 对非均匀分布的数据(如细长三角网格),BVH 通常更优。
*
* @code{.cpp}
* Octree<Point3D> octree(/*max_depth=*/8, /*max_items=*/16);
* Octree<Point3D> octree(8, 16 // max_depth, max_items);
* octree.build(points);
* auto neighbors = octree.query_knn(query_point, 5);
* @endcode