Class CurveTo
java.lang.Object
com.itextpdf.svg.renderers.path.impl.AbstractPathShape
com.itextpdf.svg.renderers.path.impl.CurveTo
- All Implemented Interfaces:
-
IControlPointCurve,IPathShape
- Direct Known Subclasses:
-
SmoothSCurveTo
Implements curveTo(C) 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
ConstructorsConstructorDescriptionCurveTo()CurveTo(boolean relative) CurveTo(boolean relative, IOperatorConverter copier) -
Method Summary
Modifier and TypeMethodDescriptionvoidDraws this instruction to a canvas object.Returns 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.voidsetCoordinates(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
-
CurveTo
public CurveTo() -
CurveTo
public CurveTo(boolean relative) -
CurveTo
-
-
Method Details
-
draw
Description copied from interface:IPathShapeDraws this instruction to a canvas object.- Specified by:
-
drawin interfaceIPathShape - Parameters:
-
canvas- to which this instruction is drawn
-
setCoordinates
Description copied from interface:IPathShapeThis method sets the coordinates for the path painting operator and does internal preprocessing, if necessary- Specified by:
-
setCoordinatesin 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:IControlPointCurveReturns coordinates of the last control point (the one closest to the ending point) in the Bezier curve, in SVG space coordinates- Specified by:
-
getLastControlPointin interfaceIControlPointCurve - Returns:
- coordinates of the last control point in SVG space coordinates
-
getPathShapeRectangle
Description copied from class:AbstractPathShapeGet bounding rectangle of the current path shape.- Specified by:
-
getPathShapeRectanglein interfaceIPathShape - Overrides:
-
getPathShapeRectanglein classAbstractPathShape - Parameters:
-
lastPoint- start point for this shape - Returns:
- calculated rectangle
-