fix: remove remaining /* ... */ inside doxygen blocks
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 31s

This commit is contained in:
茂之钳
2026-07-24 11:14:27 +00:00
parent fba37f7065
commit 980cb32468
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ std::vector<Point2D> convex_hull_2d(const std::vector<Point2D>& points);
* @note 共面/退化点被自动丢弃
*
* @code{.cpp}
* std::vector<Point3D> pts = /* 3D 点云 */;
* std::vector<Point3D> pts = 3D 点云;
* auto hull_tris = convex_hull_3d(pts);
* for (auto& tri : hull_tris) {
* // tri = {p0, p1, p2} — CCW when viewed from outside
+1 -1
View File
@@ -131,7 +131,7 @@ public:
* @note 时间复杂度 O(n²),适用于顶点数 < 1000 的多边形
*
* @code{.cpp}
* Polygon2D poly(/* CCW vertices */);
* Polygon2D poly(CCW vertices);
* auto tris = poly.triangulate();
* for (auto& t : tris) {
* // 顶点: poly.vertices()[t[0]], t[1], t[2]