This code works fine:
Point startPoint = new Point(150,100);
AffineTransform graphicsDefaultTransform = g.getTransform();
AffineTransform transform = new AffineTransform();
Rectangle bounds = myCircle.getBounds();
transform.translate(startPoint.x , startPoint.y);
g.setTransform(graphicsDefaultTransform);
g.transform(transform);
g.rotate(-Math.PI/4);
g.draw(myCircle);
However, I do not want to draw the rotated graphic at a specific location.
I would rather draw the graphic at a CERTAIN location.
Please help
Thanks
-Justin
=====================================================================
To subscribe/unsubscribe, send mail to [EMAIL PROTECTED]
Java 2D Home Page: http://java.sun.com/products/java-media/2D/