public class CurveTo2 extends Operator
Class representing y operator (append curve to path, final point replicated).
Constructor and Description |
---|
CurveTo2(double x1,
double y1,
double x3,
double y3)
Initializes curve operator.
|
CurveTo2(int index,
com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand command)
Constructor for operator class.
|
Modifier and Type | Method and Description |
---|---|
void |
accept(IOperatorSelector visitor)
Accepts visitor object to process operator.
|
Point[] |
getPoints()
Points of the curve.
|
clear, getCommand, getCommandName, getIndex, getParameters, getTrailerable, isTextShowOperator, reset, setIndex, toString, toString
public CurveTo2(int index, com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand command)
Constructor for operator class.
index
- Index of operator.command
- Operator command.public CurveTo2(double x1, double y1, double x3, double y3)
Initializes curve operator.
x1
- Abscissa of second point.y1
- Ordinate of second point.x3
- Abscissa of third point.y3
- Ordinate of third point.public Point[] getPoints()
Points of the curve.
public void accept(IOperatorSelector visitor)
Accepts visitor object to process operator.