length2 property
double
get
length2
Length squared.
Implementation
double get length2 {
final x = _qStorage[0];
final y = _qStorage[1];
final z = _qStorage[2];
final w = _qStorage[3];
return (x * x) + (y * y) + (z * z) + (w * w);
}