temp. Added multiple selection with ctrl. Not finished.

This commit is contained in:
Oleg Sh
2020-05-04 20:28:57 +02:00
parent 583cb024a1
commit 42c592fe2f
4 changed files with 122 additions and 29 deletions

View File

@@ -130,3 +130,13 @@ Rect.prototype.size = function()
{
return this.maxPoint.subtract(this.minPoint);
};
Rect.prototype.left = function()
{
return this.minPoint.x;
};
Rect.prototype.top = function()
{
return this.minPoint.y;
};