projectedPointsWithM function

PointFactory<ProjectedPoint<num>> projectedPointsWithM({
  1. required bool expectM,
})

Returns a factory for ProjectedPoint objects allowing M coordinate.

Result type candidates for objects created by a factory: Point2, Point2m, Point3, Point3m.

Implementation

PointFactory<ProjectedPoint> projectedPointsWithM({required bool expectM}) =>
    _CreateProjectedPointAllowingM(expectM: expectM);