CurveTo

Overview

CurveTo is a class in Aspose.Pdf FOSS for Java. Inherits from: Operator.

Cubic Bezier curve operator (c).

Properties

NameTypeAccessDescription
x1doubleReadReturns the x coordinate of the first control point.
y1doubleReadReturns the y coordinate of the first control point.
x2doubleReadReturns the x coordinate of the second control point.
y2doubleReadReturns the y coordinate of the second control point.
x3doubleReadReturns the x coordinate of the end point.
y3doubleReadReturns the y coordinate of the end point.
nameStringReadReturns the operator keyword.
indexintReadReturns the index of this operator within its parent {@link OperatorCollection},
or -1 if not set.
operandsList<COSBase>ReadReturns the operands as an unmodifiable list.

Methods

SignatureDescription
CurveTo(x1: double, y1: double, x2: double, y2: double, x3: double, y3: double)Creates a CurveTo (c) operator with the specified control and end points.
CurveTo(operands: List<COSBase>)Creates a CurveTo (c) operator from parsed operands.
getX1()doubleReturns the x coordinate of the first control point.
getY1()doubleReturns the y coordinate of the first control point.
getX2()doubleReturns the x coordinate of the second control point.
getY2()doubleReturns the y coordinate of the second control point.
getX3()doubleReturns the x coordinate of the end point.
getY3()doubleReturns the y coordinate of the end point.
Operator(name: String, operands: List<COSBase>)Creates an operator with the given name and operands.
getName()StringReturns the operator keyword.
getIndex()intReturns the index of this operator within its parent {@link OperatorCollection},
or -1 if not set.
setIndex(index: int)Sets the index of this operator within its parent collection.
getOperands()List<COSBase>Returns the operands as an unmodifiable list.
toString()StringReturns a string representation of this operator in content stream syntax.
equals(o: Object)boolean
hashCode()int

See Also