Error processing SSI file
LEADTOOLS (Leadtools assembly)

Show in webframe

Append Method (LeadMatrix)








The matrix to append to this LeadMatrix.
Appends the specified LeadMatrix to this LeadMatrix.
Syntax
public void Append( 
   LeadMatrix matrix
)
'Declaration
 
Public Sub Append( _
   ByVal matrix As LeadMatrix _
) 
'Usage
 
Dim instance As LeadMatrix
Dim matrix As LeadMatrix
 
instance.Append(matrix)
public void Append( 
   LeadMatrix matrix
)
void LeadMatrixAppend(LeadMatrix *result, const LeadMatrix *matrix)
public void append(LeadMatrix matrix)
 function Leadtools.LeadMatrix.Append( 
   matrix 
)
public:
void Append( 
   LeadMatrix matrix
) 

Parameters

matrix
The matrix to append to this LeadMatrix.
Remarks

This operation is the same as multiplying this LeadMatrix by the matrix passed as the parameter. Matrix multiplication is not commutative, so this operation is not the same as multiplying the matrix passed as the parameter by this LeadMatrix; that is, (this * matrix) is not the same as (matrix * this).

Requirements

Target Platforms

See Also

Reference

LeadMatrix Structure
LeadMatrix Members

Error processing SSI file