(other: RectangleLike)
| 57 | } |
| 58 | |
| 59 | equals(other: RectangleLike): boolean { |
| 60 | return ( |
| 61 | other.west === this.west && |
| 62 | other.south === this.south && |
| 63 | other.east === this.east && |
| 64 | other.north === this.north |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | at(x: number, y: number, result = new Geodetic()): Geodetic { |
| 69 | return result.set( |
nothing calls this directly
no outgoing calls
no test coverage detected