
public class ClosePath extends PathCommand
PathCommand that represents the end of the current subpath.relative| Constructor and Description |
|---|
ClosePath()
Creates a close
PathCommand. |
ClosePath(boolean relative)
Creates a close
PathCommand with the given boolean as to whether or
not it is relative. |
ClosePath(ClosePath command)
Creates a copy of the given close
PathCommand. |
| Modifier and Type | Method and Description |
|---|---|
void |
appendTo(StringBuilder build) |
ClosePath |
copy()
Returns a copy of the path command.
|
boolean |
nearEqual(PathCommand command)
Determines equality of two commands using rounded values.
|
void |
toAbsolute(PrecisePoint currentPoint,
PrecisePoint movePoint)
Converts the path commands to absolute coordinates using the given frame of
reference and the last move.
|
List<PathCommand> |
toCurve(PrecisePoint currentPoint,
PrecisePoint movePoint,
PrecisePoint curvePoint,
PrecisePoint quadraticPoint)
Converts the
PathCommand to a CurveTo command. |
String |
toString() |
isRelative, setRelativepublic ClosePath()
PathCommand. Defaults to absolute.public ClosePath(boolean relative)
PathCommand with the given boolean as to whether or
not it is relative.relative - true if the command is relativepublic ClosePath(ClosePath command)
PathCommand.command - the command to be copiedpublic ClosePath copy()
PathCommandcopy in class PathCommandpublic boolean nearEqual(PathCommand command)
PathCommandnearEqual in class PathCommandcommand - the command to comparepublic void toAbsolute(PrecisePoint currentPoint, PrecisePoint movePoint)
PathCommandtoAbsolute in class PathCommandcurrentPoint - frame of referencemovePoint - last move pointpublic List<PathCommand> toCurve(PrecisePoint currentPoint, PrecisePoint movePoint, PrecisePoint curvePoint, PrecisePoint quadraticPoint)
PathCommandPathCommand to a CurveTo command. If a
MoveTo no conversion takes place, but the current move point is
updated.toCurve in class PathCommandcurrentPoint - the current point of the pathmovePoint - the frame of reference for the pathcurvePoint - the frame of reference for the BézierquadraticPoint - the beginning of the last quadratic curvepublic void appendTo(StringBuilder build)
appendTo in class PathCommandCopyright © 2018. All rights reserved.