MultiPoint<E extends Point<num>>.make constructor

MultiPoint<E extends Point<num>>.make(
  1. Iterable<Iterable<num>> values,
  2. PointFactory<E> pointFactory, {
  3. Bounds<Point<num>>? bounds,
})

Create MultiPoint from values with a list of points.

An optional bounds can be provided or it's lazy calculated if null.

Implementation

factory MultiPoint.make(
  Iterable<Iterable<num>> values,
  PointFactory<E> pointFactory, {
  Bounds? bounds,
}) =>
    MultiPoint<E>(PointSeries<E>.make(values, pointFactory, bounds: bounds));