applyQuaternion method
      
Object3D
applyQuaternion(
    
- Quaternion q
inherited
    Applies the rotation represented by the quaternion to the object.
Implementation
Object3D applyQuaternion(Quaternion q) {
  quaternion.multiply(q);
  return this;
}