fix: namespace — Point3D/Vector3D 在 vde::core 而非 vde
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 31s

This commit is contained in:
茂之钳
2026-07-23 15:28:02 +00:00
parent 59daf39af2
commit 23e0c0de38
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
using namespace vde::boolean; using namespace vde::boolean;
using namespace vde::mesh; using namespace vde::mesh;
using vde::Point3D; using vde::core::Point3D;
// ── Helper: build a box mesh (12 triangles, 8 vertices) ── // ── Helper: build a box mesh (12 triangles, 8 vertices) ──
// Face normals point outward (CCW winding from outside) // Face normals point outward (CCW winding from outside)
+2 -2
View File
@@ -4,8 +4,8 @@
#include <cmath> #include <cmath>
using namespace vde::brep; using namespace vde::brep;
using vde::Point3D; using vde::core::Point3D;
using vde::Vector3D; using vde::core::Vector3D;
// ═══════════════════════════════════════════════════════════ // ═══════════════════════════════════════════════════════════
// Basic entity creation (box, sphere, cylinder) // Basic entity creation (box, sphere, cylinder)
+1 -1
View File
@@ -3,7 +3,7 @@
#include <cmath> #include <cmath>
using namespace vde::mesh; using namespace vde::mesh;
using vde::Point3D; using vde::core::Point3D;
// ── Helper: compute circumsphere center and radius of 4 points ── // ── Helper: compute circumsphere center and radius of 4 points ──
// Returns (center, radius_squared). If points are coplanar, radius_sq < 0. // Returns (center, radius_squared). If points are coplanar, radius_sq < 0.