fix: S9 测试 namespace 修复 (core→vde) + unused variable 消除
CI / Build & Test (push) Failing after 2m52s
CI / Release Build (push) Failing after 1m31s

This commit is contained in:
茂之钳
2026-07-23 15:27:00 +00:00
parent 785250c2b1
commit 59daf39af2
3 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -3,7 +3,7 @@
#include <cmath>
using namespace vde::mesh;
using core::Point3D;
using vde::Point3D;
// ── Helper: compute circumsphere center and radius of 4 points ──
// Returns (center, radius_squared). If points are coplanar, radius_sq < 0.
@@ -53,6 +53,7 @@ static bool verify_empty_circumsphere(
if (r2 < 0.0) continue; // degenerate
double r = std::sqrt(r2);
(void)r; // explicitly unused, computed for potential debugging
for (const auto& pt : input_points) {
// Skip vertices of this tetrahedron
double d2 = (pt - center).squaredNorm();