lengthSq method

double lengthSq()

Get the length squared of the Current Quant

Implementation

double lengthSq() {
  return x * x +y * y + z * z + w * w;
}