lengthSq method

num lengthSq()

Implementation

num lengthSq() {
  return _x * _x + _y * _y + _z * _z + _w * _w;
}