multiplyVectors method

double multiplyVectors(
  1. Vector3 spatial,
  2. Vector3 rotational
)

Multiply with two vectors

Implementation

double multiplyVectors(Vector3 spatial, Vector3 rotational) {
  return spatial.dot(this.spatial) + rotational.dot(this.rotational);
}