Example #1
0
 internal static SvgTransform CreateMatrix(SvgMatrix matrix)
 {
     return(new SvgTransform(SvgTransformType.Matrix, matrix));
 }
Example #2
0
 internal SvgTransform(SvgTransformType type, SvgMatrix matrix)
 {
     this.Type   = type;
     this.Matrix = matrix;
 }
Example #3
0
 internal SvgTransform(SvgTransformType type, SvgMatrix matrix, SvgAngle angle)
 {
     this.Type   = type;
     this.Matrix = matrix;
     this.Angle  = angle;
 }