ConcatenateMatrix

Inheritance: java.lang.Object, com.aspose.pdf.Operator

public class ConcatenateMatrix extends Operator

Class representing cm operator (concatenate matrix to current transformation matrix).

Constructors

ConstructorDescription
ConcatenateMatrix(int index, ICommand command)Constructor for operator class.
ConcatenateMatrix(double a, double b, double c, double d, double e, double f)Constructor for operator class.
ConcatenateMatrix(Matrix m)Initializes operator by matrix.

Methods

MethodDescription
getMatrix()Matrix argument of the operator.
setMatrix(Matrix value)Matrix argument of the operator.
accept(IOperatorSelector visitor)Accepts visitor object to process operator.
toString()Returns text representation of operator.
fromCommand(ICommand command)
toCommand()

ConcatenateMatrix(int index, ICommand command)

public ConcatenateMatrix(int index, ICommand command)

Constructor for operator class.

Parameters:

ParameterTypeDescription
indexintIndex of operator.
commandICommandOperator command.

ConcatenateMatrix(double a, double b, double c, double d, double e, double f)

public ConcatenateMatrix(double a, double b, double c, double d, double e, double f)

Constructor for operator class.

Parameters:

ParameterTypeDescription
adoubleA coefficient
bdoubleB coefficient
cdoubleC coefficient
ddoubleD coefficient
edoubleE coefficient
fdoubleF coefficient

ConcatenateMatrix(Matrix m)

public ConcatenateMatrix(Matrix m)

Initializes operator by matrix.

Parameters:

ParameterTypeDescription
mMatrixTransfomation matrix.

getMatrix()

public Matrix getMatrix()

Matrix argument of the operator.

Returns: Matrix - Matrix object

setMatrix(Matrix value)

public void setMatrix(Matrix value)

Matrix argument of the operator.

Parameters:

ParameterTypeDescription
valueMatrixMatrix object

accept(IOperatorSelector visitor)

public void accept(IOperatorSelector visitor)

Accepts visitor object to process operator.

Parameters:

ParameterTypeDescription
visitorIOperatorSelectorVisitor object.

toString()

public String toString()

Returns text representation of operator.

Returns: java.lang.String - Text representation of representation

fromCommand(ICommand command)

public void fromCommand(ICommand command)

Parameters:

ParameterTypeDescription
commandICommand

toCommand()

public ICommand toCommand()

Returns: ICommand