VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / AffineMatrix3D Class / CreateTranslation(Double,Double,Double) Method
Syntax Requirements SeeAlso
In This Topic
    CreateTranslation(Double,Double,Double) Method (AffineMatrix3D)
    In This Topic
    Creates matrix and translates it to the specified offset.
    Syntax
    'Declaration
    
    Public Shared Function CreateTranslation( _
    ByVal offsetX
    The amount to offset this AffineMatrix3D along the x-axis.
    As Double, _
    ByVal offsetY
    The amount to offset this AffineMatrix3D along the y-axis.
    As Double, _
    ByVal offsetZ
    The amount to offset this AffineMatrix3D along the z-axis.
    As Double _
    ) As AffineMatrix3D
    public static AffineMatrix3D CreateTranslation(
    double offsetX,
    double offsetY,
    double offsetZ
    )
    public: static AffineMatrix3D* CreateTranslation(
    double offsetX,
    double offsetY,
    double offsetZ
    )
    public:
    static AffineMatrix3D^ CreateTranslation(
    double offsetX,
    double offsetY,
    double offsetZ
    )

    Parameters

    offsetX
    The amount to offset this AffineMatrix3D along the x-axis.
    offsetY
    The amount to offset this AffineMatrix3D along the y-axis.
    offsetZ
    The amount to offset this AffineMatrix3D along the z-axis.

    Return Value

    The translated matrix.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also