manhattanLength method
Computes the Manhattan length of this vector.
Implementation
double manhattanLength() {
return x.abs() + y.abs() + z.abs();
}
Computes the Manhattan length of this vector.
double manhattanLength() {
return x.abs() + y.abs() + z.abs();
}