We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi everyone, How to display text or strings upside down in processing (android mode)? This is so that people on both sides of the screen can have text facing them.
Answers
Maybe
translate(0, -1);
can help ya there. But you still got to make some adjustments w/ height.that translate() will only move the text.
i think you need rotate(). use PI as the angle.
Thanks guys, i managed to figure it out by using both translate and rotate. If the text i want to rotate is in the center of the screen:
Thanks once again!