getArea method

double getArea()

Returns the area of this Geometry. Areal Geometries have a non-zero area. They override this function to compute the area. Others return 0.0

@return the area of the Geometry

Implementation

double getArea() {
  return 0.0;
}