Example #1
0
        public static AffineTransform getRotateInstance(double angle, double x, double y)
        {
            AffineTransform t = new AffineTransform();

            t.setToRotation(angle, x, y);
            return(t);
        }
 public static AffineTransform getRotateInstance(double angle, double x, double y)
 {
     AffineTransform t = new AffineTransform();
     t.setToRotation(angle, x, y);
     return t;
 }