|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packagecom.itextpdf.kernel.pdf.canvas.parser.clipper
as colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.
Adds all iText Subpaths of the iText com.itextpdf.kernel.geom.Path to the ClipperOffset object with one note: it doesn't add degenerate subpaths. @param offset the ClipperOffset object to add all iText Subpaths that are not degenerated. @param path com.itextpdf.kernel.geom.Path object, containing the required Subpaths @param joinType IClipper join type. The value could be IClipper.JoinType.BEVEL, IClipper.JoinType.ROUND, IClipper.JoinType.MITER @param endType IClipper end type. The value could be IClipper.EndType.CLOSED_POLYGON, IClipper.EndType.CLOSED_LINE, IClipper.EndType.OPEN_BUTT, IClipper.EndType.OPEN_SQUARE, IClipper.EndType.OPEN_ROUND @return java.util.List consisting of all degenerate iText Subpaths of the path.Class ClipperBridge, void addRectToClipper(IClipper, Point[], PolyType)
Adds rectangle path based on array of com.itextpdf.kernel.geom.Point (internally converting them by .convertToLongPoints) and adds this path to IClipper instance. @param clipper IClipper instance to which the created rectangle path will be added. @param rectVertices an array of com.itextpdf.kernel.geom.Point which will be internally converted to clipper path and added to the clipper instance. @param polyType either IClipper.PolyType.SUBJECT or IClipper.PolyType.CLIP denoting whether added path is a subject of clipping or a part of the clipping polygon. @deprecated use .addPolygonToClipper instead.Class ClipperBridge, List
Converts list of Point.LongPoint objects into list of com.itextpdf.kernel.geom.Point objects. @param points the list of Point.LongPoint objects to convert @return the resultant list of com.itextpdf.kernel.geom.Point objects.Class ClipperBridge, List
Converts list of com.itextpdf.kernel.geom.Point objects into list of Point.LongPoint objects. @param points the list of com.itextpdf.kernel.geom.Point objects to convert @return the resultant list of Point.LongPoint objects.Class ClipperBridge, Path convertToPath(PolyTree)
Converts Clipper library PolyTree abstraction into iText com.itextpdf.kernel.geom.Path object. @param result PolyTree object to convert @return resultant com.itextpdf.kernel.geom.Path object