applyQuaternion method
      
BufferGeometry
applyQuaternion(
    
- Quaternion q
inherited
    Applies the rotation represented by the quaternion to the geometry.
Implementation
BufferGeometry applyQuaternion(Quaternion q) {
  final Matrix4 m1 = Matrix4.identity();
  m1.makeRotationFromQuaternion(q);
  applyMatrix4(m1);
  return this;
}