Flip Mirror the screen, Android Mode VR

Hello,
i have a pair of AR Glasses to put my smartphone in. The glasses have translucid lens which reflects the screen of my phone. I would like to create a VR app, but i need to flip mirror the entire content of the single eyes.
Is this possible? i would like to add text as a starting point, and rotate it (i need it to show some numbers from wireless sensors but that’s later problem! :smiley: )
Thank you in advance,
Best Regards,
Michele

I just solved:
draw(){
shape(grid);
textSize(100);
fill(255,0,0);

pushMatrix();
scale(-1f,1f);
text(“CIAO”, 10,10);
popMatrix();
}
thanks anyway!
best wishes,

1 Like