Class MoveTo
java.lang.Object
org.openscience.cdk.renderer.elements.path.PathElement
org.openscience.cdk.renderer.elements.path.MoveTo
A MoveTo path element moves the drawing 'pen' without making any lines or
curves and is commonly used to start a path or make gaps in the path.
- Author:
- Arvid
-
Field Summary
FieldsFields inherited from class org.openscience.cdk.renderer.elements.path.PathElement
type -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.openscience.cdk.renderer.elements.path.PathElement
points, toString, type
-
Field Details
-
coords
public final double[] coordsThe point to move to.
-
-
Constructor Details
-
MoveTo
public MoveTo(javax.vecmath.Point2d point) Make a move to path element.- Parameters:
point- the point to move to
-
MoveTo
public MoveTo(double[] coords) Make a move to path element.- Parameters:
coords- the x,y coordinates in index 0,1
-
MoveTo
public MoveTo(double x, double y) Make a move to path element.- Parameters:
x- x coordy- y coord
-
-
Method Details
-
points
public float[] points()Get the points in the path.- Specified by:
pointsin classPathElement- Returns:
- a list of points
-
points
public void points(double[] coords) Load the provided array with the specified coordinates of this path element.- Specified by:
pointsin classPathElement- Parameters:
coords- coordinates (length = 6)
-