expandByDistance method

void expandByDistance(
  1. double distance
)

Expands this envelope by a given distance in all directions. Both positive and negative distances are supported.

@param distance the distance to expand the envelope

Implementation

void expandByDistance(double distance) {
  expandBy(distance, distance);
}