pub fn distance<T>(a: &Vector3<T>, b: &Vector3<T>) -> TExpand description
Calculate the shortest (Euclidean) distance between two Points.
@post for unit vectors: result <= 2
a,bthe points.
returns the shortest (Euclidean) distance between the points.