LineString<T extends Point<num>>.any constructor

LineString<T extends Point<num>>.any(
  1. Iterable<T> chain
)

Create LineString from chain of points (0 or >= 2 items).

Implementation

factory LineString.any(Iterable<T> chain) => LineString<T>(chain);