可变矩形<T extends num> 构造函数
- T left,
- T top,
- T width,
- T height,
创建一个由 (left, top)
和 (left+width, top+height)
包围的可变矩形。
该矩形包含 x 坐标在 left
和 left + width
之间,y 坐标在 top
和 top + height
之间的点,包括两端。
宽度和高度应为非负数。如果宽度或高度为负,则将其限制为零。
如果宽度和高度都为零,则“矩形”仅包含单个点 (left, top)
。
示例
var rectangle = MutableRectangle(20, 50, 300, 600);
print(rectangle); // Rectangle (20, 50) 300 x 600
print(rectangle.left); // 20
print(rectangle.top); // 50
print(rectangle.right); // 320
print(rectangle.bottom); // 650
// Change rectangle width and height.
rectangle.width = 200;
rectangle.height = 100;
print(rectangle); // Rectangle (20, 50) 200 x 100
print(rectangle.left); // 20
print(rectangle.top); // 50
print(rectangle.right); // 220
print(rectangle.bottom); // 150
实现
MutableRectangle(this.left, this.top, T width, T height)
: this._width =
(width < 0) ? _clampToZero<T>(width) : (width + 0 as dynamic),
this._height =
(height < 0) ? _clampToZero<T>(height) : (height + 0 as dynamic);