dotTo method

double dotTo(
  1. Sp3dV3D other
)

(en)Return dot product.

(ja)ドット積を返します。

Implementation

double dotTo(Sp3dV3D other) {
  return dot(this, other);
}