MCPcopy Create free account
hub / github.com/beutton/browser-flight-simulator / equals

Method equals

packages/core/src/Rectangle.ts:59–66  ·  view source on GitHub ↗
(other: RectangleLike)

Source from the content-addressed store, hash-verified

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(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected