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

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