Package com.datalogics.PDFL
Class CurveTo
java.lang.Object
com.datalogics.PDFL.Segment
com.datalogics.PDFL.CurveTo
The curveto operator is used to draw a Bezier curve. The curved segment is appended to a path.
The curveto operator calculates the curve between two endpoints, the current (beginning) point and the final (end) point, and in relation to two matching control points.
The control points define the nature of the curve between the two endpoints. These values are represented by a series of x and y coordinates.
-
Constructor Summary
ConstructorsConstructorDescriptionCurveTo(double x1, double y1, double x2, double y2, double x3, double y3) Append a cubic Bézier curve to the current path. The curve extends from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bézier control points. The new current point is (x3 , y3).Append a cubic Bézier curve to the current path. The curve extends from the current point to point3, using point1 and point2 as the Bézier control points. The new current point is point3. -
Method Summary
-
Constructor Details
-
CurveTo
Append a cubic Bézier curve to the current path. The curve extends from the current point to point3, using point1 and point2 as the Bézier control points. The new current point is point3.- Parameters:
point1- the first control point.point2- the second control point.point3- the new current point.
-
CurveTo
public CurveTo(double x1, double y1, double x2, double y2, double x3, double y3) Append a cubic Bézier curve to the current path. The curve extends from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bézier control points. The new current point is (x3 , y3).- Parameters:
x1- The x-coordinate of the first control point.y1- The y-coordinate of the first control point.x2- The x-coordinate of the second control point.y2- The y-coordinate of the second control point.x3- The x-coordinate of the new current point.y3- The y-coordinate of the new current point.
-
-
Method Details
-
delete
public void delete() -
toString
-
setPoint1
The first control point. -
getPoint1
The first control point. -
setPoint2
The second control point. -
getPoint2
The second control point. -
setPoint3
The new current point. -
getPoint3
The new current point.
-