Package org.apache.poi.sl.draw.geom
Interface CurveToCommandIf
-
- All Superinterfaces:
PathCommand
- All Known Implementing Classes:
CurveToCommand
public interface CurveToCommandIf extends PathCommand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
execute(Path2D.Double path, Context ctx)
Execute the command an append a segment to the specified pathAdjustPointIf
getPt1()
AdjustPointIf
getPt2()
AdjustPointIf
getPt3()
void
setPt1(AdjustPointIf pt1)
void
setPt2(AdjustPointIf pt2)
void
setPt3(AdjustPointIf pt3)
-
-
-
Method Detail
-
getPt1
AdjustPointIf getPt1()
-
setPt1
void setPt1(AdjustPointIf pt1)
-
getPt2
AdjustPointIf getPt2()
-
setPt2
void setPt2(AdjustPointIf pt2)
-
getPt3
AdjustPointIf getPt3()
-
setPt3
void setPt3(AdjustPointIf pt3)
-
execute
default void execute(Path2D.Double path, Context ctx)
Description copied from interface:PathCommand
Execute the command an append a segment to the specified path- Specified by:
execute
in interfacePathCommand
- Parameters:
path
- the path to append the result toctx
- the context to lookup variables
-
-