From de6426ae995844f8c32cff642b1c27f3c6d7fb86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Thu, 19 Mar 2015 15:39:37 +0000 Subject: [PATCH] Removed some direkt acg references git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@20462 383ad7c9-94d9-4d36-a494-682f7c89f535 --- Algorithms/DiffGeoT.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Algorithms/DiffGeoT.cc b/Algorithms/DiffGeoT.cc index d8d8ca5..d6e0ea7 100755 --- a/Algorithms/DiffGeoT.cc +++ b/Algorithms/DiffGeoT.cc @@ -185,7 +185,7 @@ compute_area(VertexHandle _vh) const typename Mesh::HalfedgeHandle heh0, heh1, heh2; typename Mesh::VertexOHalfedgeIter voh_it; - ACG::Vec3d P, Q, R, PQ, QR, PR; + typename Mesh::Point P, Q, R, PQ, QR, PR; double normPQ, normQR, normPR; double angleP, angleQ, angleR; double area; @@ -202,9 +202,9 @@ compute_area(VertexHandle _vh) const if (mesh_.is_boundary(heh0)) continue; - ACG::Vec3d P = (ACG::Vec3d) mesh_.point(mesh_.to_vertex_handle(heh2)); - ACG::Vec3d Q = (ACG::Vec3d) mesh_.point(mesh_.to_vertex_handle(heh0)); - ACG::Vec3d R = (ACG::Vec3d) mesh_.point(mesh_.to_vertex_handle(heh1)); + P = mesh_.point(mesh_.to_vertex_handle(heh2)); + Q = mesh_.point(mesh_.to_vertex_handle(heh0)); + R = mesh_.point(mesh_.to_vertex_handle(heh1)); (PQ = Q) -= P; (QR = R) -= Q; -- GitLab