A class for representing two-dimensional rectangles whose properties are immutable.

Implemented by

Constructors

Rectangle(T left, T top, T width, T height)

Create a rectangle spanned by (left, top) and (left+width, top+height).

const
Rectangle.fromPoints(Point<T> a, Point<T> b)

Create a rectangle spanned by the points a and b;

factory

Properties

height → T

final
left → T

final
top → T

final
width → T

final
bottom → T

The y-coordinate of the bottom edge.

read-only, inherited
bottomLeft Point<T>

read-only, inherited
bottomRight Point<T>

read-only, inherited
hashCode int

read-only, inherited

The x-coordinate of the right edge.

read-only, inherited
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited
topLeft Point<T>

read-only, inherited
topRight Point<T>

read-only, inherited

Operators

operator ==(other) bool

The equality operator.

inherited

Methods

boundingBox(Rectangle<T> other) Rectangle<T>

Returns a new rectangle which completely contains this and other.

inherited
containsPoint(Point<num> another) bool

Tests whether another is inside or along the edges of this.

inherited
containsRectangle(Rectangle<num> another) bool

Tests whether this entirely contains another.

inherited
intersection(Rectangle<T> other) Rectangle<T>

Computes the intersection of this and other.

inherited
intersects(Rectangle<num> other) bool

Returns true if this intersects other.

inherited
noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
toString() String

Returns a string representation of this object.

inherited