From 23e0c0de38508cc71b149e46e438c5942b089225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=82=E4=B9=8B=E9=92=B3?= Date: Thu, 23 Jul 2026 15:28:02 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20namespace=20=E2=80=94=20Point3D/Vector3D?= =?UTF-8?q?=20=E5=9C=A8=20vde::core=20=E8=80=8C=E9=9D=9E=20vde?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/boolean/test_boolean_mesh.cpp | 2 +- tests/brep/test_brep.cpp | 4 ++-- tests/mesh/test_delaunay_3d.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/boolean/test_boolean_mesh.cpp b/tests/boolean/test_boolean_mesh.cpp index 59da9ac..633f6e7 100644 --- a/tests/boolean/test_boolean_mesh.cpp +++ b/tests/boolean/test_boolean_mesh.cpp @@ -5,7 +5,7 @@ using namespace vde::boolean; using namespace vde::mesh; -using vde::Point3D; +using vde::core::Point3D; // ── Helper: build a box mesh (12 triangles, 8 vertices) ── // Face normals point outward (CCW winding from outside) diff --git a/tests/brep/test_brep.cpp b/tests/brep/test_brep.cpp index da97d7c..6dd27f2 100644 --- a/tests/brep/test_brep.cpp +++ b/tests/brep/test_brep.cpp @@ -4,8 +4,8 @@ #include using namespace vde::brep; -using vde::Point3D; -using vde::Vector3D; +using vde::core::Point3D; +using vde::core::Vector3D; // ═══════════════════════════════════════════════════════════ // Basic entity creation (box, sphere, cylinder) diff --git a/tests/mesh/test_delaunay_3d.cpp b/tests/mesh/test_delaunay_3d.cpp index 540a714..6711710 100644 --- a/tests/mesh/test_delaunay_3d.cpp +++ b/tests/mesh/test_delaunay_3d.cpp @@ -3,7 +3,7 @@ #include using namespace vde::mesh; -using vde::Point3D; +using vde::core::Point3D; // ── Helper: compute circumsphere center and radius of 4 points ── // Returns (center, radius_squared). If points are coplanar, radius_sq < 0.