public float distance(VectorNode to) { return (float) location.distanceSquared(to.location); }
boolean at(Vector3f goal) { return location.distanceSquared(goal) <= 4; }