Fix compilation

This commit is contained in:
Mael Rouxel-Labbé 2022-10-21 14:32:42 +02:00
parent bd83e152e3
commit 88b3d0ab88
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ private:
(CGAL::angle(p2, p1, p0) == CGAL::OBTUSE) ||
(CGAL::angle(p0, p2, p1) == CGAL::OBTUSE))
{
const FT A = internal::positive_area_3(m_traits, p0, p1, p2);
const FT A = internal::positive_area_3(p0, p1, p2, m_traits);
if (angle0 == CGAL::OBTUSE)
voronoi_area += A / FT(2);
else