あ! Processing116以降だと出なくなってるみたいです。
115だとこのプログラムで動きました(win/mac)
size(200, 200);
// フォント名を調べる
// println(PFont.list());
PFont f= createFont("MS Gothic", 24);
// PFont f= createFont("Osaka", 24);
textFont(f);
rotate(radians(45));
text("nihongo日本語", 0, 0);
|
|