public class QuadCurve extends AbstractQuadCurve implements Serializable
Modifier and Type | Field and Description |
---|---|
float |
ctrlx
The x-coordinate of the control point.
|
float |
ctrly
The y-coordinate of the control point.
|
float |
x1
The x-coordinate of the start of this curve.
|
float |
x2
The x-coordinate of the end of this curve.
|
float |
y1
The y-coordinate of the start of this curve.
|
float |
y2
The y-coordinate of the end of this curve.
|
Constructor and Description |
---|
QuadCurve()
Creates a quad curve with all points at (0,0).
|
QuadCurve(float x1,
float y1,
float ctrlx,
float ctrly,
float x2,
float y2)
Creates a quad curve with the specified start, control, and end points.
|
Modifier and Type | Method and Description |
---|---|
float |
ctrlX()
Returns the x-coordinate of the control point.
|
float |
ctrlY()
Returns the y-coordinate of the control point.
|
void |
setCurve(float[] coords,
int offset)
Configures the start, control, and end points for this curve, using the values at the
specified offset in the
coords array. |
void |
setCurve(float x1,
float y1,
float ctrlx,
float ctrly,
float x2,
float y2)
Configures the start, control, and end points for this curve.
|
void |
setCurve(IQuadCurve curve)
Configures the start, control, and end points for this curve to be the same as the supplied
curve.
|
void |
setCurve(XY[] points,
int offset)
Configures the start, control, and end points for this curve, using the values at the
specified offset in the
points array. |
void |
setCurve(XY p1,
XY cp,
XY p2)
Configures the start, control, and end points for this curve.
|
float |
x1()
Returns the x-coordinate of the start of this curve.
|
float |
x2()
Returns the x-coordinate of the end of this curve.
|
float |
y1()
Returns the y-coordinate of the start of this curve.
|
float |
y2()
Returns the y-coordinate of the end of this curve.
|
bounds, bounds, clone, contains, contains, contains, contains, ctrlP, flatness, flatnessSq, intersects, intersects, isEmpty, p1, p2, pathIterator, pathIterator, subdivide
public float x1
public float y1
public float ctrlx
public float ctrly
public float x2
public float y2
public QuadCurve()
public QuadCurve(float x1, float y1, float ctrlx, float ctrly, float x2, float y2)
public void setCurve(float x1, float y1, float ctrlx, float ctrly, float x2, float y2)
public void setCurve(XY p1, XY cp, XY p2)
public void setCurve(float[] coords, int offset)
coords
array.public void setCurve(XY[] points, int offset)
points
array.public void setCurve(IQuadCurve curve)
public float x1()
IQuadCurve
x1
in interface IQuadCurve
public float y1()
IQuadCurve
y1
in interface IQuadCurve
public float ctrlX()
IQuadCurve
ctrlX
in interface IQuadCurve
public float ctrlY()
IQuadCurve
ctrlY
in interface IQuadCurve
public float x2()
IQuadCurve
x2
in interface IQuadCurve
public float y2()
IQuadCurve
y2
in interface IQuadCurve
Copyright © 2017. All rights reserved.