ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / Vector2 Structure / MultiplyRef Method / MultiplyRef(Vector2,Vector2,Single) Method
When the method completes, contains the scaled vector.
The vector to scale.
The amount by which to scale the vector.

In This Topic
    MultiplyRef(Vector2,Vector2,Single) Method
    In This Topic
    Scales a vector by the given value.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub MultiplyRef( _
       ByRef result As Vector2, _
       ByRef value As Vector2, _
       ByVal scale As Single _
    ) 
    public static void MultiplyRef( 
       out Vector2 result,
       ref Vector2 value,
       float scale
    )

    Parameters

    result
    When the method completes, contains the scaled vector.
    value
    The vector to scale.
    scale
    The amount by which to scale the vector.
    See Also