anyPoints function

PointFactory<Point<num>> anyPoints({
  1. bool expectGeographic = true,
})

Returns a factory for cartesian and geographic Point objects without M.

Result type candidates for objects created by a factory: Point2, Point3, GeoPoint2, GeoPoint3.

Implementation

PointFactory anyPoints({bool expectGeographic = true}) =>
    _CreateAnyPoint(expectGeographic: expectGeographic);