List of usage examples for java.awt.geom AffineTransform setToRotation
public void setToRotation(double vecx, double vecy, double anchorx, double anchory)
From source file:Main.java
public void paint(Graphics g) { Shape shape = new Rectangle2D.Float(100, 50, 80, 80); Graphics2D g2 = (Graphics2D) g; AffineTransform at = new AffineTransform(); at.setToRotation(0.2, 0.2, Math.PI / 6, Math.PI / 6); at.translate(100, 0);/* w w w . j a va2 s . c o m*/ g2.setTransform(at); g2.draw(shape); }