MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / moveTo

Method moveTo

src/main/java/field/graphics/FLine.java:190–193  ·  view source on GitHub ↗

moves the draw position to a new place `x,y` without drawing anything on the way there.

(double x, double y)

Source from the content-addressed store, hash-verified

188 public FLine moveTo(double x, double y) {
189 return add(new MoveTo(x, y, 0));
190 }
191
192 /**
193 * moves the draw position to `position` without drawing anything on the way there.
194 */
195 public FLine moveTo(Vec2 position) {
196 return add(new MoveTo(position.x, position.y, 0));

Callers 15

button0Method · 0.95
feedbackMethod · 0.95
showMethod · 0.95
defaultdrawsLinesMethod · 0.95
notifyMethod · 0.95
defaultdrawsLinesMethod · 0.95
installFrameDecorMethod · 0.95
installMainDecorMethod · 0.95
installDrawerMethod · 0.95
DraggableNodeMethod · 0.95
DraggableCubicHandleMethod · 0.95

Calls 1

addMethod · 0.95

Tested by

no test coverage detected