There was an error while loading. Please reload this page.
This is sometimes confusing and hard to read.
this.size = new Point(randSize, randSize); this.minPosition = this.size.center; ``` Can be ``` this.size = new Size(randSize, randSize); this.minPosition = this.size.center; ```
This is sometimes confusing and hard to read.