fix: remove remaining /* ... */ inside doxygen blocks
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user