public class CurveTo extends Operator
Class representing c operator (append curve to path).
Modifier and Type | Field and Description |
---|---|
double |
X1
Gets or sets the X1 coordinate.
|
double |
X2
Gets or sets the X2 coordinate.
|
double |
X3
Gets or sets the X3 coordinate.
|
double |
Y1
Gets or sets the Y1 coordinate.
|
double |
Y2
Gets or sets the Y2 coordinate.
|
double |
Y3
Gets or sets the Y3 coordinate.
|
Constructor and Description |
---|
CurveTo(double x1,
double y1,
double x2,
double y2,
double x3,
double y3)
Initializes curve operator.
|
CurveTo(int index,
com.aspose.pdf.engine.commondata.pagecontent.operators.pathconstructionoperators.AppendCubicBezierCurve command)
Constructor for operator class.
|
Modifier and Type | Method and Description |
---|---|
void |
accept(IOperatorSelector visitor)
Accepts visitor object to process operator.
|
com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand |
toCommand()
For internal usage only!
|
String |
toString()
Returns text representation of operator.
|
equals, getCommand, getCommandName, getIndex, isTextShowOperator, reset, setIndex, toString, valueEquals
public double X1
Gets or sets the X1 coordinate.
public double Y1
Gets or sets the Y1 coordinate.
public double X2
Gets or sets the X2 coordinate.
public double Y2
Gets or sets the Y2 coordinate.
public double X3
Gets or sets the X3 coordinate.
public double Y3
Gets or sets the Y3 coordinate.
public CurveTo(int index, com.aspose.pdf.engine.commondata.pagecontent.operators.pathconstructionoperators.AppendCubicBezierCurve command)
Constructor for operator class.
index
- Index of operator.command
- Operator command.public CurveTo(double x1, double y1, double x2, double y2, double x3, double y3)
Initializes curve operator.
x1
- Abscissa of first point.y1
- Ordinate of first point.x2
- Abscissa of second point.y2
- Ordinate of second point.x3
- Abscissa of third point.y3
- Ordinate of third point.public void accept(IOperatorSelector visitor)
Accepts visitor object to process operator.
public String toString()
Returns text representation of operator.
public com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand toCommand()
Operator
saves operator to command
Copyright © 2025 Aspose. All Rights Reserved.