getNumPoints method

int getNumPoints()
override

Returns the count of this Geometrys vertices. The Geometry s contained by composite Geometrys must be Geometry's; that is, they must implement getNumPoints

@return the number of vertices in this Geometry

Implementation

int getNumPoints() {
  return isEmpty() ? 0 : 1;
}