Version

Matrix Constructor(Single,Single,Single,Single,Single,Single)

Initializes a new instance of the Matrix class.
Syntax
'Declaration
 
Public Function New( _
   ByVal m11 As Single, _
   ByVal m12 As Single, _
   ByVal m21 As Single, _
   ByVal m22 As Single, _
   ByVal offsetX As Single, _
   ByVal offsetY As Single _
)
public Matrix( 
   float m11,
   float m12,
   float m21,
   float m22,
   float offsetX,
   float offsetY
)

Parameters

m11
The value in the first row, first column.
m12
The value in the first row, second column.
m21
The value in the second row, first column.
m22
The value in the second row, second column.
offsetX
X-offset.
offsetY
Y-offset.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also