(west: number, south: number, east: number, north: number)
| 37 | } |
| 38 | |
| 39 | set(west: number, south: number, east: number, north: number): this { |
| 40 | this.west = west |
| 41 | this.south = south |
| 42 | this.east = east |
| 43 | this.north = north |
| 44 | return this |
| 45 | } |
| 46 | |
| 47 | clone(): Rectangle { |
| 48 | return new Rectangle(this.west, this.south, this.east, this.north) |