Error processing SSI file
LEADTOOLS (Leadtools assembly)

Show in webframe

Prepend Method








The matrix to prepend to this LeadMatrix.
Prepends the specified LeadMatrix onto this LeadMatrix.
Syntax
public void Prepend( 
   LeadMatrix matrix
)
'Declaration
 
Public Sub Prepend( _
   ByVal matrix As LeadMatrix _
) 
'Usage
 
Dim instance As LeadMatrix
Dim matrix As LeadMatrix
 
instance.Prepend(matrix)
public void Prepend( 
   LeadMatrix matrix
)
void LeadMatrixPrepend(LeadMatrix *result, const LeadMatrix *matrix)
public void prepend(LeadMatrix matrix)
 function Leadtools.LeadMatrix.Prepend( 
   matrix 
)
public:
void Prepend( 
   LeadMatrix matrix
) 

Parameters

matrix
The matrix to prepend to this LeadMatrix.
Remarks

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

Requirements

Target Platforms

See Also

Reference

LeadMatrix Structure
LeadMatrix Members

Error processing SSI file