Construct a instance as the identity matrix.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfMatrix(
	float m11,
	float m12,
	float m21,
	float m22,
	float dx,
	float dy
)
Public Sub New ( 
	m11 As Single,
	m12 As Single,
	m21 As Single,
	m22 As Single,
	dx As Single,
	dy As Single
)
public:
PdfMatrix(
	float m11, 
	float m12, 
	float m21, 
	float m22, 
	float dx, 
	float dy
)
new : 
        m11 : float32 * 
        m12 : float32 * 
        m21 : float32 * 
        m22 : float32 * 
        dx : float32 * 
        dy : float32 -> PdfMatrix

Parameters

m11
Single
The value in the first row and first column.
m12
Single
The value in the first row and second column.
m21
Single
The value in the second row and first column.
m22
Single
The value in the second row and second column.
dx
Single
The value in the third row and first column.
dy
Single
The value in the third row and second column.

See Also