Add typename

This commit is contained in:
Andreas Fabri 2024-01-17 09:32:23 +00:00
parent f6546e129c
commit d34e9a02af
1 changed files with 1 additions and 1 deletions

View File

@ -1887,7 +1887,7 @@ private:
-axis1.y(), axis1.x(), 0,
0, 0, 1.0);
CGAL::Aff_transformation_3<Kernel> T(CGAL::TRANSLATION, -Kernel::Vector_3((bbox[0].x() + bbox[2].x()) * 0.5, (bbox[0].y() + bbox[2].y()) * 0.5, (maxz + minz) * 0.5));
CGAL::Aff_transformation_3<Kernel> T(CGAL::TRANSLATION, - typename Kernel::Vector_3((bbox[0].x() + bbox[2].x()) * 0.5, (bbox[0].y() + bbox[2].y()) * 0.5, (maxz + minz) * 0.5));
return R * T;
}