コンテンツにスキップ

逆転する文字

文字が逆転します。

img01.png

void setup(){
size(300, 400);
}
void draw(){
background(0);
pushMatrix();
translate(100, 100);
rotate(radians(180));
textSize(40);
text("A", 0, 0);
popMatrix();
}