length property
double
get
length
Compute the legnth of the vector
Implementation
double get length => sqrt(x * x + y * y + z * z);
Compute the legnth of the vector
double get length => sqrt(x * x + y * y + z * z);