Java com.itextpdf.text.pdf.parser Path fields, constructors, methods, implement or subclass

Example usage for Java com.itextpdf.text.pdf.parser Path fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.itextpdf.text.pdf.parser Path.

The text is from its open source code.

Constructor

Method

voidaddSubpaths(List subpaths)
Adds the subpaths to this path.
voidcloseAllSubpaths()
Closes all subpathes contained in this path.
voidcloseSubpath()
Closes the current subpath.
Point2DgetCurrentPoint()
The current point is the trailing endpoint of the segment most recently added to the current path.
ListgetSubpaths()
booleanisEmpty()
Path is empty if it contains no subpaths.
voidlineTo(final float x, final float y)
Appends a straight line segment from the current point to the point (x, y).
voidmoveTo(final float x, final float y)
Begins a new subpath by moving the current point to coordinates (x, y).
ListreplaceCloseWithLine()
Adds additional line to each closed subpath and makes the subpath unclosed.