How much of a cylinder can you see from a single point of view?

I'm creating wraps for trash cans and recycling bins to label them appropriately. They'll wrap 360 degrees around the bins. I want the text on the bins to be readable from a single point-of-view (so someone doesn't need to walk around the bin to read the whole thing). Assuming the bins are cylinders, is there a way to represent what percentage of the cylinder would be viewable from a given point of view?


Solution 1:

When you stand $N$ radiuses away from the surface of the cylinder, you can see this fraction of its surface: $$ \frac{1}{\pi}\cos^{-1}\left(\frac{1}{N+1}\right) $$ -- or $\arccos(1/(N+a))/180^\circ$ if your arccosine function produces answers in degrees rather than radians.

Practically: When you stand outside the cylinder, you can see a fraction of its circumference that depends on how far from it you are. The fraction is always less than 180°, but approaches it closely as your viewpoint moves farther away from the cylinder.

On the other hand, you need to get your head fairly close to the trash can (closer than one radius to the surface) in order to see less than a third of the circumference.

So if your goal is just that an observer at a reasonable distance can see at least one copy of every letter of the text you write, writing it three times will be sufficient. But then you risk that the viewer will have to piece the text together from to halves as in:

    |                                                                |
    |TED THREE TIMES AROUND THE CAN.        THIS TEXT IS REPEATED THR|
    |                                                                |

If you want at least one full copy of the entire notice to be visible from anywhere, four or five repetitions would be advisable.