ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / Translation Method / Translation(Single,Single,Single) Method
X-coordinate offset.
Y-coordinate offset.
Z-coordinate offset.

In This Topic
    Translation(Single,Single,Single) Method
    In This Topic
    Creates a translation matrix using the specified offsets.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Translation( _
       ByVal x As System.Single, _
       ByVal y As System.Single, _
       ByVal z As System.Single _
    ) As Matrix4x4
    public static Matrix4x4 Translation( 
       System.float x,
       System.float y,
       System.float z
    )

    Parameters

    x
    X-coordinate offset.
    y
    Y-coordinate offset.
    z
    Z-coordinate offset.

    Return Value

    The created translation matrix.
    See Also