crossTo method

Sp3dV3D crossTo(
  1. Sp3dV3D other
)

(en)Return cross product.

(ja)クロス積を返します。

Implementation

Sp3dV3D crossTo(Sp3dV3D other) {
  return cross(this, other);
}