new Matrix(0.707f, 0.707f, -0.707f, 0.707f, 0, 0) : Matrix « 2D Graphics « C# / C Sharp






new Matrix(0.707f, 0.707f, -0.707f, 0.707f, 0, 0)

  


using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
   
class MobyDick: Form
{
     public static void Main()
     {
          Application.Run(new MobyDick());
     }
     public MobyDick()
     {
          ResizeRedraw = true; 
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);
     }     
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)
     {
          grfx.Transform = new Matrix(0.707f, 0.707f, -0.707f, 0.707f, 0, 0);

          grfx.DrawString("abc", Font, new SolidBrush(clr), 
                          new Rectangle(0, 0, cx, cy));
     }
}

   
  








Related examples in the same category

1.Text direction (Matrix Rotate)
2.Matrix DemoMatrix Demo
3.Matrix DrawMatrix Draw
4.Multiply two Matrixes
5.Matrix Util