use convex hulls

This commit is contained in:
Joachim Schöberl 2016-09-07 09:05:03 +02:00
parent 40bb7d7c61
commit 1d70dcf08b

View File

@ -110,6 +110,11 @@ namespace netgen
return curv;
}
virtual bool InConvexHull (Point<2> p, double eps) const
{
return seg.InConvexHull (p, eps);
}
};