Class MoveTo

java.lang.Object
javafx.scene.shape.PathElement
javafx.scene.shape.MoveTo

public class MoveTo extends PathElement
Creates an addition to the path by moving to the specified coordinates.

For more information on path elements see the Path and PathElement classes.

Example:

import javafx.scene.shape.*;

Path path = new Path();
path.getElements().add(new MoveTo(0.0f, 0.0f));
path.getElements().add(new LineTo(100.0f, 100.0f));
Since:
JavaFX 2.0