manhattanDistanceTo method
Implementation
manhattanDistanceTo(Vector3 v) {
return Math.abs(x - v.x) + Math.abs(y - v.y) + Math.abs(z - v.z);
}
manhattanDistanceTo(Vector3 v) {
return Math.abs(x - v.x) + Math.abs(y - v.y) + Math.abs(z - v.z);
}