BoundingBox class

Class representing a bounding box for spatial indexing.

Constructors

BoundingBox(num xmin, num ymin, num xmax, num ymax)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
xmax num
The xmax coordinate of this instance.
final
xmin num
The xmin coordinate of this instance.
final
ymax num
The ymax coordinate of this instance.
final
ymin num
The ymin coordinate of this instance.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this instance to a JSON object.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJson(Map json) BoundingBox
Deserializes data from JSON object json into a new BoundingBox instance.