hi, i’m trying to output text in 3d using various rotations and subsequent text’s bounding box starts hiding the text below.
This is my code, very simple. Is there a way to fix this?
Thanks in advance!
void setup() {
size(300, 300, P3D);
fill(300, 300, 0);
textAlign(LEFT, CENTER);
background(0);
}
void draw() {
background(0);
textSize(56);
fill(0, 102, 153, 500);
pushMatrix();
rotateY(radians(30));
text("word", 12, 45);
popMatrix();
pushMatrix();
rotateY(radians(50));
text("word", 12, 60);
popMatrix();
}