public void textFont(PFont oPFont, float size) { currentFont = new Font(oPFont.GetFontName(), size); }
public override void Setup() { size(500, 500); myfonts = PFont.List(); }
// TEXTFONT ************************* public void textFont(PFont oPFont) { currentFont = new Font(oPFont.GetFontName(), oPFont.GetFontSize()); }