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

@ -109,7 +109,12 @@ namespace netgen
double curv = fabs(first(0)*second(1)-first(1)*second(0)) / pow(first.Length(), 3); double curv = fabs(first(0)*second(1)-first(1)*second(0)) / pow(first.Length(), 3);
return curv; return curv;
} }
virtual bool InConvexHull (Point<2> p, double eps) const
{
return seg.InConvexHull (p, eps);
}
}; };