getBoundsFromTwoBoxes static method

BoundingBox getBoundsFromTwoBoxes(
  1. BoundingBox first,
  2. BoundingBox second
)

Gets bounds based on two bounding boxes.

Implementation

static mapkit_geometry_geometry.BoundingBox getBoundsFromTwoBoxes(
    mapkit_geometry_geometry.BoundingBox first,
    mapkit_geometry_geometry.BoundingBox second) {
  return _getBoundsFromTwoBoxes(
    first,
    second,
  );
}