public static bool IsTriangleInsectAABB2(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 min, Vector2 max, ref GeoInsectPointArrayInfo insect)
 {
     return(GeoAABBUtils.IsAABBInsectTriangle2(min, max, p1, p2, p3, ref insect));
 }