MutableRectangle<T extends num> class
A class for representing two-dimensional axis-aligned rectangles with mutable properties.
- Implemented types
-
- Rectangle<
T>
- Rectangle<
Constructors
- MutableRectangle(T left, T top, T width, T height)
-
Create a mutable rectangle spanned by
(left, top)
and(left+width, top+height)
. -
MutableRectangle.fromPoints(Point<
T> a, Point<T> b) -
Create a mutable rectangle spanned by the points
a
andb
;factory
Properties
- bottom → T
-
The y-coordinate of the bottom edge.
read-onlyinherited
-
bottomLeft
→ Point<
T> -
read-onlyinherited
-
bottomRight
→ Point<
T> -
read-onlyinherited
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- height ↔ T
-
The height of the rectangle.
read / write
- left ↔ T
-
The x-coordinate of the left edge.
read / write
- right → T
-
The x-coordinate of the right edge.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- top ↔ T
-
The y-coordinate of the left edge.
read / write
-
topLeft
→ Point<
T> -
read-onlyinherited
-
topRight
→ Point<
T> -
read-onlyinherited
- width ↔ T
-
The width of the rectangle.
read / write
Methods
-
boundingBox(
Rectangle< T> other) → Rectangle<T> -
Returns a new rectangle which completely contains
this
andother
.inherited -
containsPoint(
Point< num> another) → bool -
Tests whether
another
is inside or along the edges ofthis
.inherited -
containsRectangle(
Rectangle< num> another) → bool -
Tests whether
this
entirely containsanother
.inherited -
intersection(
Rectangle< T> other) → Rectangle<T> ? -
Computes the intersection of
this
andother
.inherited -
intersects(
Rectangle< num> other) → bool -
Returns true if
this
intersectsother
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited