How big does a rectangle have to be so that while rotating it, another smaller rectangle behind it is never visible?

127 Views Asked by At

Imagine I'm drawing a rectangle (rectSmall) of the size 1280x720.

This rectangle is static and never changes its position, size, rotation, etc.

Now I want to draw another, bigger rectangle on top of it (rectBig) that is continuously rotating around its center.

If rectBig has the same size as rectSmall, rectSmall will naturally be partly visible behind rectBig while rectBig is rotating (unless rectBig's rotation angle is 0 or 360).

My question is: How big does rectBig have to be so that rectSmall is never visible behind rectBig?

(Sorry for my English :D)

2

There are 2 best solutions below

1
On BEST ANSWER

The diagonal of rectSmall must be the minimal side length of rectBig.

0
On

If the big rectangle has same centre as small rectangle,then big rectangle with minimum area to completely cover(during rotation) the small rectangle will be a square. The length of side of this square is the diameter of circle circumscribing the smaller rectangle. If you draw it, it would be clearer to you.