intersectsConvexHull method
Performs a ray/convex hull intersection test. Returns either true or false if there is a intersection or not.
Implementation
bool intersectsConvexHull(ConvexHull convexHull ) {
return intersectConvexHull( convexHull, v1 ) != null;
}