Matrix(Double, Double, Double, Double, Double, Double) Constructor
Initializes a new instance of the Matrix struct (equivalent to a 2x3 Matrix without perspective).
Definition
Namespace: Avalonia
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public Matrix(
double scaleX,
double skewY,
double skewX,
double scaleY,
double offsetX,
double offsetY
)
Public Sub New (
scaleX As Double,
skewY As Double,
skewX As Double,
scaleY As Double,
offsetX As Double,
offsetY As Double
)
new :
scaleX : float *
skewY : float *
skewX : float *
scaleY : float *
offsetX : float *
offsetY : float -> Matrix
Parameters
- Double
- The first element of the first row.
- Double
- The second element of the first row.
- Double
- The first element of the second row.
- Double
- The second element of the second row.
- Double
- The first element of the third row.
- Double
- The second element of the third row.