Generated by
JDiff

com.itextpdf.kernel.geom Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.kernel.geom as colored differences. Deletions are shown like 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.

Class PageSize, PageSize rotate()

Rotates PageSize clockwise. @return the rotated PageSize.

Class Path, void curveFromTo(float, float, float, float)

Appends a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3) with using the (x1, note y1) that and the (x3, y3) as control points. Note that (x3, y3) is used both as both a control point represents and an two ending point @param x1 x-coordinate of the first intermediate control points. point @param y1 y-coordinate of the first intermediate control point @param x3 x-coordinate of the second intermediate control point (and ending point) @param y3 y-coordinate of the second intermediate control point (and ending point)
Class Path, void curveTo(float, float, float, float)

Appends a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3) with using the note current point and (x2, y2) as intermediate control points. Note that current point is both used as the current starting point represents and two a control points. point @param x2 x-coordinate of the second intermediate control point @param y2 y-coordinate of the second intermediate control point @param x3 x-coordinate of the ending point @param y3 y-coordinate of the ending point
Class Path, boolean isEmpty()

Path is empty if it contains no subpaths. @return true in case the path is empty and false otherwise
Class Path, void rectangle(Rectangle)

Appends a rectangle to the current path as a complete subpath. @param rect the rectangle to append to the current path
Class Path, void rectangle(float, float, float, float)

Appends a rectangle to the current path as a complete subpath. @param x lower left x-coordinate of the rectangle @param y lower left y-coordinate of the rectangle @param w width of the rectangle @param h height of the rectangle

Class Rectangle, Rectangle applyMargins(float, float, float, float, boolean)

Change the rectangle according the specified margins. @param topIndent the value on which the top y coordinate will change. @param rightIndent the value on which the right x coordinate will change. @param bottomIndent the value on which the bottom y coordinate will change. @param leftIndent the value on which the left x coordinate will change. @param reverse if {@code true} the rectangle will expand, otherwise it will shrink @return the rectangle rectanglewith with applied margins
Class Rectangle, boolean overlaps(Rectangle)

Check if this rectangle and the passed rectangle overlap @param rect rect a rectangle which is to be checked if it overlaps the passed rectangle. @return true if there is overlap of some kind

Class Subpath, constructor Subpath(Point)

Constructs a new subpath starting at the given point. @param startPoint the point this subpath starts at
Class Subpath, constructor Subpath(Subpath)

Copy constuctor constructor. @param subpath Subpath which contents will be used to create this Subpath
Class Subpath, constructor Subpath(float, float)

Constructs a new subpath starting at the given point. @param startPointX x-coordinate of the start point of subpath @param startPointY y-coordinate of the start point of subpath
Class Subpath, void setClosed(boolean)

See .isClosed() @param closed boolean value indicating whether the path is closed or not.
Class Subpath, void setStartPoint(Point)

Sets the start point of the subpath. @param startPoint the point this subpath starts at
Class Subpath, void setStartPoint(float, float)

Sets the start point of the subpath. @param x x x-coordinate of the start pint @param y y-coordinate of the start pint