Class QuadraticCurveTo
java.lang.Object
com.itextpdf.svg.renderers.path.impl.AbstractPathShape
com.itextpdf.svg.renderers.path.impl.QuadraticCurveTo
- All Implemented Interfaces:
-
IControlPointCurve
,IPathShape
- Direct Known Subclasses:
-
QuadraticSmoothCurveTo
Implements quadratic Bezier curveTo(Q) attribute of SVG's path element
-
Field Summary
Fields inherited from class com.itextpdf.svg.renderers.path.impl.AbstractPathShape
coordinates, copier, properties, relative
-
Constructor Summary
ConstructorDescriptionQuadraticCurveTo
(boolean relative) QuadraticCurveTo
(boolean relative, IOperatorConverter copier) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Draws a quadratic Bezier curve from the current point to (x,y) using (x1,y1) as the control pointReturns coordinates of the last control point (the one closest to the ending point) in the Bezier curve, in SVG space coordinatesgetPathShapeRectangle
(Point lastPoint) Get bounding rectangle of the current path shape.void
setCoordinates
(String[] inputCoordinates, Point startPoint) This method sets the coordinates for the path painting operator and does internal preprocessing, if necessaryMethods inherited from class com.itextpdf.svg.renderers.path.impl.AbstractPathShape
createPoint, getEndingPoint, isRelative
-
Constructor Details
-
QuadraticCurveTo
public QuadraticCurveTo() -
QuadraticCurveTo
public QuadraticCurveTo(boolean relative) -
QuadraticCurveTo
-
-
Method Details
-
draw
Draws a quadratic Bezier curve from the current point to (x,y) using (x1,y1) as the control point- Specified by:
-
draw
in interfaceIPathShape
- Parameters:
-
canvas
- to which this instruction is drawn
-
setCoordinates
Description copied from interface:IPathShape
This method sets the coordinates for the path painting operator and does internal preprocessing, if necessary- Specified by:
-
setCoordinates
in interfaceIPathShape
- Parameters:
-
inputCoordinates
- an array containing point values for path coordinates -
startPoint
- the ending point of the previous operator, or, in broader terms, the point that the coordinates should be absolutized against, for relative operators
-
getLastControlPoint
Description copied from interface:IControlPointCurve
Returns coordinates of the last control point (the one closest to the ending point) in the Bezier curve, in SVG space coordinates- Specified by:
-
getLastControlPoint
in interfaceIControlPointCurve
- Returns:
- coordinates of the last control point in SVG space coordinates
-
getPathShapeRectangle
Description copied from class:AbstractPathShape
Get bounding rectangle of the current path shape.- Specified by:
-
getPathShapeRectangle
in interfaceIPathShape
- Overrides:
-
getPathShapeRectangle
in classAbstractPathShape
- Parameters:
-
lastPoint
- start point for this shape - Returns:
- calculated rectangle
-