getCoordinate method

Coordinate getCoordinate(
  1. int i
)
override

Get the Coordinate with index i.

@param i the index of the coordinate @return the requested Coordinate instance

Implementation

Coordinate getCoordinate(int i) {
  return coordinates![i];
}