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; ```