Quaternion.identity constructor

Quaternion.identity()

Implementation

Quaternion.identity(){
  _x = 0.0;
  _y = 0.0;
  _z = 0.0;
  _w = 1.0;
}