java rotate rectangle around the center
Asked Answered
Z

2

8

I would like to rotate a rectangle around its center point and it should remain in the place that it is supposed be drawn and rotate in that space

this is my code:

AffineTransform transform = new AffineTransform();

    transform.rotate(Math.toRadians(45),rectangle.width/2, rectangle.height/2);
    Shape transformed = transform.createTransformedShape(rectangle);
    g2.fill(transformed)

the rectangle is rotated but it is drawn at a different part of the screen, how can I correct this?

Zetes answered 10/1, 2012 at 17:33 Comment(0)
R
16

I haven't tried this, but it seems you aren't getting the correct middle of the rectangle. Try:

AffineTransform transform = new AffineTransform();
transform.rotate(Math.toRadians(45), rectangle.getX() + rectangle.width/2, rectangle.getY() + rectangle.height/2);
g2.fill(transformed);

The difference is now you're adding the width to the starting X point and adding the height to the starting Y point, hence the middle of the rectangle.

Hope this helps.

Reproach answered 10/1, 2012 at 17:44 Comment(0)
N
6
AffineTransform transform = new AffineTransform();
transform.rotate(theta, rect.getX() + rect.width/2, rect.getY() + rect.height/2);
AffineTransform old = g2.getTransform();
g2.transform(transform);

// draw your rectangle here...

g2.setTransfrom(old);

If you do it like that, its possible to draw a more advanced rectangle. For example with a gradient fill, or text inside the rectangle. Everything will rotate with it.

Neoclassicism answered 19/12, 2012 at 11:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.