(x: number, y: number, result = new Geodetic())
| 66 | } |
| 67 | |
| 68 | at(x: number, y: number, result = new Geodetic()): Geodetic { |
| 69 | return result.set( |
| 70 | this.west + (this.east - this.west) * x, |
| 71 | this.north + (this.south - this.north) * y |
| 72 | ) |
| 73 | } |
| 74 | |
| 75 | fromArray(array: readonly number[], offset = 0): this { |
| 76 | this.west = array[offset] |
no test coverage detected