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
+2 -2
View File
@@ -20,7 +20,7 @@
* @code{.cpp}
* auto body = make_box(10, 5, 3);
* // 或者更复杂的构建:
* auto profile = /* NURBS 曲线 */;
* auto profile = NURBS 曲线;
* auto swept = extrude(profile, Vector3D(0, 0, 10));
* auto rounded = fillet(swept, 0, 2.0);
* @endcode
@@ -78,7 +78,7 @@ using core::AABB3D;
*
* @code{.cpp}
* // 绕 Y 轴旋转半圆,生成球体的一半
* NurbsCurve semicircle = /* 在 XZ 平面中的半圆弧 */;
* NurbsCurve semicircle = 在 XZ 平面中的半圆弧;
* auto half_sphere = revolve(semicircle, Point3D(0,0,0),
* Vector3D(0,1,0), M_PI);
* @endcode