VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging Namespace / PointFAffineTransform Class / FromCoefficients(Single,Single,Single,Single,Single,Single) Method
Syntax Requirements SeeAlso
In This Topic
    FromCoefficients(Single,Single,Single,Single,Single,Single) Method (PointFAffineTransform)
    In This Topic
    Creates a new point transformation from matrix coefficients.
    Syntax
    'Declaration
    
    Public Shared Function FromCoefficients( _
    ByVal m11
    The M11 coefficient.
    As Single, _
    ByVal m12
    The M12 coefficient.
    As Single, _
    ByVal m21
    The M21 coefficient.
    As Single, _
    ByVal m22
    The M22 coefficient.
    As Single, _
    ByVal offsetX
    The OffsetX coefficient.
    As Single, _
    ByVal offsetY
    The OffsetY coefficient.
    As Single _
    ) As PointFTransform
    public static PointFTransform FromCoefficients(
    float m11,
    float m12,
    float m21,
    float m22,
    float offsetX,
    float offsetY
    )
    public: static PointFTransform* FromCoefficients(
    float m11,
    float m12,
    float m21,
    float m22,
    float offsetX,
    float offsetY
    )
    public:
    static PointFTransform^ FromCoefficients(
    float m11,
    float m12,
    float m21,
    float m22,
    float offsetX,
    float offsetY
    )

    Parameters

    m11
    The M11 coefficient.
    m12
    The M12 coefficient.
    m21
    The M21 coefficient.
    m22
    The M22 coefficient.
    offsetX
    The OffsetX coefficient.
    offsetY
    The OffsetY coefficient.

    Return Value

    The point transformation.
    Requirements

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

    See Also