Merge remote-tracking branch 'cgal/releases/CGAL-4.11-branch'

This commit is contained in:
Sébastien Loriot 2017-08-18 16:30:16 +02:00
commit d5bca02dbe
1 changed files with 1 additions and 2 deletions

View File

@ -161,8 +161,7 @@ void faces_area(Mesh* poly,
Point a = get(vpmap, target(h, *poly));
Point b = get(vpmap, target(next(h, *poly), *poly));
Point c = get(vpmap, target(next(next(h, *poly), *poly), *poly));
CGAL::squared_area(a,b,c);
acc(CGAL::sqrt(CGAL::squared_distance(a, b)));
acc(CGAL::sqrt(CGAL::squared_area(a,b,c)));
}
mini = extract_result< tag::min >(acc);