OGREnvelope
Represent the OGREnvelope C Structure.
Attributes
| Attribute | Type | Description |
|---|---|---|
| MinX | c_double | The minimum X-coordinate value representing the left boundary of the bounding box. |
| MaxX | c_double | The maximum X-coordinate value representing the right boundary of the bounding box. |
| MinY | c_double | The minimum Y-coordinate value representing the bottom boundary of the bounding box. |
| MaxY | c_double | The maximum Y-coordinate value representing the top boundary of the bounding box. |
Constructor
Signature
def OGREnvelope() - > null
Signature
def OGREnvelope(
MinX: float = null,
MaxX: float = null,
MinY: float = null,
MaxY: float = null
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| MinX | float = null | The minimum X-coordinate (west) boundary of the envelope |
| MaxX | float = null | The maximum X-coordinate (east) boundary of the envelope |
| MinY | float = null | The minimum Y-coordinate (south) boundary of the envelope |
| MaxY | float = null | The maximum Y-coordinate (north) boundary of the envelope |