(distance = 0, heading = 0, pitch = 0, roll = 0)
| 30 | roll: number |
| 31 | |
| 32 | constructor(distance = 0, heading = 0, pitch = 0, roll = 0) { |
| 33 | this.distance = distance |
| 34 | this.heading = heading |
| 35 | this.pitch = pitch |
| 36 | this.roll = roll |
| 37 | } |
| 38 | |
| 39 | get distance(): number { |
| 40 | return this._distance |
nothing calls this directly
no outgoing calls
no test coverage detected