()
| 63 | } |
| 64 | |
| 65 | clone(): PointOfView { |
| 66 | return new PointOfView(this.distance, this.heading, this.pitch, this.roll) |
| 67 | } |
| 68 | |
| 69 | copy(other: PointOfView): this { |
| 70 | this.distance = other.distance |
nothing calls this directly
no outgoing calls
no test coverage detected