ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntity Class / SetMatrix Method
Matrix to be set.




In This Topic
    SetMatrix Method (ImGearVectorEntity)
    In This Topic
    Sets a transformation matrix of the entity.
    Syntax
    'Declaration
     
    Public Sub SetMatrix( _
       ByVal matrix() As Single _
    ) 
    'Usage
     
    Dim instance As ImGearVectorEntity
    Dim matrix() As Single
     
    instance.SetMatrix(matrix)
    public void SetMatrix( 
       float[] matrix
    )
    public: void SetMatrix( 
       float[]* matrix
    ) 
    public:
    void SetMatrix( 
       array<float>^ matrix
    ) 

    Parameters

    matrix
    Matrix to be set.
    Remarks
    The matrix consists of 16 floating-point values and aligned by columns, that is: a11 a21 a31 a41 a12 a22 a32 a42 a13 a23 a33 a43 a14 a24 a34 a44.
    See Also