AABB.fromCoordinates constructor
Implementation
@Deprecated('Use AABB.fromLTWH')
AABB.fromCoordinates({
required double x,
required double y,
required double width,
required double height,
}) : left = x,
top = y,
right = x + width,
bottom = y + height;