ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Vector4 Structure / Vector4 Constructor / Vector4 Constructor(Vector2,Single,Single)
A vector containing the values with which to initialize the X and Y components.
Initial value for the Z component of the vector.
Initial value for the W component of the vector.

In This Topic
    Vector4 Constructor(Vector2,Single,Single)
    In This Topic
    Initializes a new instance of the Vector4 struct.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal value As Vector2, _
       ByVal z As System.Single, _
       ByVal w As System.Single _
    )
    public Vector4( 
       Vector2 value,
       System.float z,
       System.float w
    )

    Parameters

    value
    A vector containing the values with which to initialize the X and Y components.
    z
    Initial value for the Z component of the vector.
    w
    Initial value for the W component of the vector.
    See Also