MotionMark icon indicating copy to clipboard operation
MotionMark copied to clipboard

Add a separate class for Size

Open shallawa opened this issue 1 year ago • 0 comments

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

shallawa avatar Sep 11 '24 16:09 shallawa