(other: PointOfView)
| 67 | } |
| 68 | |
| 69 | copy(other: PointOfView): this { |
| 70 | this.distance = other.distance |
| 71 | this.heading = other.heading |
| 72 | this.pitch = other.pitch |
| 73 | this.roll = other.roll |
| 74 | return this |
| 75 | } |
| 76 | |
| 77 | equals(other: PointOfView): boolean { |
| 78 | return ( |
no outgoing calls
no test coverage detected