OrientedCoordinateArray constructor

OrientedCoordinateArray(
  1. List<Coordinate> pts
)

Creates a new {@link OrientedCoordinateArray} for the given {@link Coordinate} array.

@param pts the coordinates to orient

Implementation

OrientedCoordinateArray(this.pts) {
  _orientation = orientation(pts);
}