Add Angle_3()(Point_3, Point_3, Point_3, Point_3)

This commit is contained in:
Laurent Rineau
2014-05-21 11:04:59 +02:00
parent dffb22f732
commit 191b01b13b
6 changed files with 58 additions and 5 deletions
@@ -79,6 +79,16 @@ namespace CartesianKernelFunctors {
q.x(), q.y(), q.z(),
r.x(), r.y(), r.z());
}
result_type
operator()(const Point_3& p, const Point_3& q,
const Point_3& r, const Point_3& s) const
{
return angleC3(p.x(), p.y(), p.z(),
q.x(), q.y(), q.z(),
r.x(), r.y(), r.z(),
s.x(), s.y(), s.z());
}
};
template <typename K>