applyQuaternion method

Object3D applyQuaternion(
  1. Quaternion q
)

Applies the rotation represented by the quaternion to the object.

Implementation

Object3D applyQuaternion(Quaternion q) {
  quaternion.multiply(q);
  return this;
}