createPointEmpty method

Point createPointEmpty()

Constructs an empty {@link Point} geometry.

@return an empty Point

Implementation

Point createPointEmpty() {
  return createPointSeq(
      getCoordinateSequenceFactory().create(<Coordinate>[]));
}