Range2D

An Axis-Aligned Bounding Box in 2D space, implemented as the minimum and maximum corners.

Fields fields

x_range

Type: Range1D

The range of the X-axis (usually left and right bounds).

y_range

Type: Range1D

The range of the Y-axis (usually top and bottom bounds).

Arrow datatype arrow-datatype

Struct {
    x_range: FixedSizeList<2, float64>
    y_range: FixedSizeList<2, float64>
}