public void textFont(PFont oPFont, float size)
 {
     currentFont = new Font(oPFont.GetFontName(), size);
 }
Exemple #2
0
        public override void Setup()
        {
            size(500, 500);

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