midpointTo method

Vector3 midpointTo(
  1. ArPose other
)

Midpoint between this pose and another.

Implementation

Vector3 midpointTo(ArPose other) => (position + other.position) * 0.5;