ComponentOne FinancialChart for WPF
C1.WPF Namespace / Extensions Class / Transform Method
The Matrix defining transformation.
The x coordinate of the point.
The y coordinate of the point.



In This Topic
    Transform Method
    In This Topic
    Transforms a point by this matrix.
    Syntax
    'Declaration
     
    
    <ExtensionAttribute()>
    Public Shared Function Transform( _
       ByVal matrix As Matrix, _
       ByVal x As Double, _
       ByVal y As Double _
    ) As Point
    'Usage
     
    
    Dim matrix As Matrix
    Dim x As Double
    Dim y As Double
    Dim value As Point
     
    value = Extensions.Transform(matrix, x, y)
    [Extension()]
    public static Point Transform( 
       Matrix matrix,
       double x,
       double y
    )
    [Extension()]
    public:
    static Point Transform( 
       Matrix matrix,
       double x,
       double y
    ) 

    Parameters

    matrix
    The Matrix defining transformation.
    x
    The x coordinate of the point.
    y
    The y coordinate of the point.

    Return Value

    The result of the transformation for the point.
    See Also