예제 #1
0
파일: XMatrix.cs 프로젝트: Sl0vi/PDFsharp
 /// <summary>
 /// Sets the matrix.
 /// </summary>
 void SetMatrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY, XMatrixTypes type)
 {
     _m11 = m11;
     _m12 = m12;
     _m21 = m21;
     _m22 = m22;
     _offsetX = offsetX;
     _offsetY = offsetY;
     _type = type;
 }
예제 #2
0
 /// <summary>
 /// Sets the matrix.
 /// </summary>
 // ReSharper disable ParameterHidesMember
 void SetMatrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY, XMatrixTypes type)
 // ReSharper restore ParameterHidesMember
 {
   this.m11 = m11;
   this.m12 = m12;
   this.m21 = m21;
   this.m22 = m22;
   this.offsetX = offsetX;
   this.offsetY = offsetY;
   this.type = type;
 }
예제 #3
0
 void SetMatrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY, XMatrixTypes type)
 {
   this.m11 = m11;
   this.m12 = m12;
   this.m21 = m21;
   this.m22 = m22;
   this.offsetX = offsetX;
   this.offsetY = offsetY;
   this.type = type;
 }