Class VerticalLineTo
java.lang.Object
com.itextpdf.svg.renderers.path.impl.AbstractPathShape
com.itextpdf.svg.renderers.path.impl.LineTo
com.itextpdf.svg.renderers.path.impl.VerticalLineTo
- All Implemented Interfaces:
-
IPathShape
Implements lineTo(V) 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
ConstructorDescriptionCreates an absolute Vertical LineTo.VerticalLineTo
(boolean relative) Creates a Vertical LineTo. -
Method Summary
Modifier and TypeMethodDescriptionvoid
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, getPathShapeRectangle, isRelative
-
Constructor Details
-
VerticalLineTo
public VerticalLineTo()Creates an absolute Vertical LineTo. -
VerticalLineTo
public VerticalLineTo(boolean relative) Creates a Vertical LineTo. Set argument to true to create a relative VerticalLineTo.- Parameters:
-
relative
- whether this is a relative VerticalLineTo or not
-
-
Method Details
-
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
- Overrides:
-
setCoordinates
in classLineTo
- 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
-