applyQuaternion method

BufferGeometry applyQuaternion(
  1. Quaternion q
)
inherited

Applies the rotation represented by the quaternion to the geometry.

Implementation

BufferGeometry applyQuaternion(Quaternion q) {
  m1.makeRotationFromQuaternion(q);
  applyMatrix4(m1);
  return this;
}