130131132133134135136137138139140
travel(x, y, f); } public void travel(double x, double y, double f) { Vector2d v = new Vector2d(x - this.x, y - this.y); double length = v.lengthSquared(); if(length > retractThrshSq) retract(); if(length > 0)