ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX Namespace / Vector3 Structure / Multiply Method / Multiply(Vector3,Vector3,Vector3) Method
When the method completes, contains the modulated vector.
The first vector to modulate.
The second vector to modulate.

In This Topic
    Multiply(Vector3,Vector3,Vector3) Method
    In This Topic
    Modulates a vector with another by performing component-wise multiplication.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub Multiply( _
       ByRef result As Vector3, _
       ByRef left As Vector3, _
       ByRef right As Vector3 _
    ) 
    public static void Multiply( 
       out Vector3 result,
       ref Vector3 left,
       ref Vector3 right
    )

    Parameters

    result
    When the method completes, contains the modulated vector.
    left
    The first vector to modulate.
    right
    The second vector to modulate.
    See Also