Graphics2D: rotate(double theta) : Graphics2D « java.awt « Java by API






Graphics2D: rotate(double theta)

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public void paint(Graphics g) {

    g.fillRect(0, 0, 20, 20);

    Graphics2D g2 = (Graphics2D) g;

    g2.translate(50, 50);
    g2.rotate(30.0 * Math.PI / 180.0);

    g2.scale(2.0, 2.0);

    g.setColor(Color.red);

    g.fillRect(0, 0, 20, 20);

  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200, 200);
    frame.setVisible(true);
  }
}
           
       








Related examples in the same category

1.Graphics2D: draw(Shape s)
2.Graphics2D: drawGlyphVector(GlyphVector g, float x, float y)
3.Graphics2D: drawString(String str, int x, int y)
4.Graphics2D: drawString(String str, int x, int y) (Unicode)
5.Graphics2D: fill(Shape s)
6.Graphics2D: getFontRenderContext()
7.Graphics2D: scale(double sx, double sy)
8.Graphics2D: setComposite(Composite comp)
9.Graphics2D: setPaint(Paint paint)
10.Graphics2D: setRenderingHints(Map hints)
11.Graphics2D: setRenderingHint(Key hintKey, Object hintValue)
12.Graphics2D: setStroke(Stroke s)
13.Graphics2D: transform(AffineTransform Tx)
14.Graphics2D: translate(int x, int y)