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

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