(pose)
| 75516 | return this.orientation; |
| 75517 | } |
| 75518 | equals(pose) { |
| 75519 | if (!pose) return false; |
| 75520 | return this.position.equals(pose.position) && this.orientation.equals(pose.orientation); |
| 75521 | } |
| 75522 | exactEquals(pose) { |
| 75523 | if (!pose) return false; |
| 75524 | return this.position.exactEquals(pose.position) && this.orientation.exactEquals(pose.orientation); |
no outgoing calls
no test coverage detected