|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packagecom.itextpdf.kernel.geom
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.
Rotates PageSize clockwise. @return the rotated PageSize.
Appends a cubic Bezier curve to the current path. The curve shall extend from the current point to the pointClass Path, void curveTo(float, float, float, float)(x3, y3)
withusingthe(x1,
notey1)thatandthe(x3, y3)
as control points. Note that(x3, y3)
is used both as both a control pointrepresentsand antwoending point @param x1 x-coordinate of the first intermediate controlpoints.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)
Appends a cubic Bezier curve to the current path. The curve shall extend from the current point to the pointClass Path, boolean isEmpty()(x3, y3)
withusing thenotecurrent point and(x2, y2)
as intermediate control points. Note that current point is both used as thecurrentstarting pointrepresentsandtwoa controlpoints.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
Path is empty if it contains no subpaths. @returnClass Path, void rectangle(Rectangle)true
in case the path is empty andfalse
otherwise
Appends a rectangle to the current path as a complete subpath. @param rect the rectangle to append to the current pathClass 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
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 rectangleClass Rectangle, boolean overlaps(Rectangle)rectanglewithwith applied margins
Check if this rectangle and the passed rectangle overlap @paramrectrect a rectangle which is to be checked if it overlaps the passed rectangle. @return true if there is overlap of some kind
Constructs a new subpath starting at the given point. @param startPoint the point this subpath starts atClass Subpath, constructor Subpath(Subpath)
CopyClass Subpath, constructor Subpath(float, float)constuctorconstructor.@param subpath Subpath which contents will be used to create this Subpath
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 subpathClass 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 atClass Subpath, void setStartPoint(float, float)
Sets the start point of the subpath. @paramxx x-coordinate of the start pint @param y y-coordinate of the start pint