boundingBox property

BoundingBox get boundingBox

The bounding box of the path.

This property is cached for performance.

Implementation

BoundingBox get boundingBox {
  if (_boundingBox != null) {
    return _boundingBox!;
  }
  _boundingBox = BoundingBox.fromLatLongs(_path);
  return _boundingBox!;
}