Add Orientation_3::operator()(Origin,Point_3,Point_3,Point_3)

This commit is contained in:
Andreas Fabri
2022-03-10 10:55:44 +00:00
parent e27855980a
commit f01e24c75b
5 changed files with 93 additions and 8 deletions
@@ -4307,6 +4307,15 @@ namespace CartesianKernelFunctors {
w.x(), w.y(), w.z());
}
result_type
operator()( Origin o, const Point_3& u,
const Point_3& v, const Point_3& w) const
{
return orientationC3(u.x(), u.y(), u.z(),
v.x(), v.y(), v.z(),
w.x(), w.y(), w.z());
}
result_type
operator()( const Tetrahedron_3& t) const
{