Exemplo n.º 1
0
        public static AffineTransform GetRotateInstance(double angle, double x, double y)
        {
            AffineTransform t = new AffineTransform();

            t.SetToRotation(angle, x, y);
            return(t);
        }
Exemplo n.º 2
0
 public static AffineTransform GetRotateInstance(double angle, double x, double y) {
     AffineTransform t = new AffineTransform();
     t.SetToRotation(angle, x, y);
     return t;
 }
Exemplo n.º 3
0
 public static AffineTransform GetRotateInstance(double angle) {
     AffineTransform t = new AffineTransform();
     t.SetToRotation(angle);
     return t;
 }