ImageGear .NET v25.2 - Updated
ImageGear.Formats.Dicom Assembly / ImageGear.Formats.DICOM Namespace / ImGearLinearTransform Structure / ImGearLinearTransform Constructor
Slope coefficient.
Intercept coefficient.




In This Topic
    ImGearLinearTransform Constructor
    In This Topic
    Initializes a new instance of the ImGearLinearTransform struct.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal slope As Double, _
       ByVal intercept As Double _
    )
    'Usage
     
    Dim slope As Double
    Dim intercept As Double
     
    Dim instance As New ImGearLinearTransform(slope, intercept)
    public ImGearLinearTransform( 
       double slope,
       double intercept
    )
    public: ImGearLinearTransform( 
       double slope,
       double intercept
    )
    public:
    ImGearLinearTransform( 
       double slope,
       double intercept
    )

    Parameters

    slope
    Slope coefficient.
    intercept
    Intercept coefficient.

    Return Value

    The new instance of ImGearLinearTransform structure object.
    Remarks
    This constructor creates new instance of ImGearLinearTransform structure object.
    See Also