area static method

double area(
  1. Boundable b
)

Implementation

static double area(Boundable b) {
  return (b.getBounds() as Envelope).getArea();
}