Class LineTo
java.lang.Object
org.openscience.cdk.renderer.elements.path.PathElement
org.openscience.cdk.renderer.elements.path.LineTo
A line element 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 make a line to.
-
-
Constructor Details
-
LineTo
public LineTo(javax.vecmath.Point2d point) Make a line to this point.- Parameters:
point- the endpoint of the line
-
LineTo
public LineTo(double[] coords) Make a line path element.- Parameters:
coords- the x,y coordinates in index 0,1
-
LineTo
public LineTo(double x, double y) Make a line 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)
-