bbox property

  1. @override
BoundingBox get bbox
override

Returns the BoundingBox of the Point Note: SINGLE POINTS CANNOT BE BOUNDED. WILL ALWAYS RETURN BoundingBox.empty.

Example:

Point(Coordinate(1, 2)).bbox; // BoundingBox(0, 0, 0, 0)

Implementation

@override
BoundingBox get bbox {
  return BoundingBox.empty();
}