distTo method

double distTo(
  1. Sp3dV3D other
)

(en)Return euclidean distance.

(ja)ユークリッド距離を返します。

Implementation

double distTo(Sp3dV3D other) {
  return dist(this, other);
}