ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Vector4 Structure / MultiplyRef Method / MultiplyRef(Vector4,Vector4,Vector4) Method
When the method completes, contains the modulated vector.
The first vector to modulate.
The second vector to modulate.

In This Topic
    MultiplyRef(Vector4,Vector4,Vector4) Method
    In This Topic
    Modulates a vector with another by performing component-wise multiplication.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub MultiplyRef( _
       ByRef result As Vector4, _
       ByRef left As Vector4, _
       ByRef right As Vector4 _
    ) 
    public static void MultiplyRef( 
       out Vector4 result,
       ref Vector4 left,
       ref Vector4 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