5252 * ^^^^^^^^^^^^^^ setWidth (width displaced by char)
5353 * </PRE>
5454 * @webref typography
55+ * @see PApplet#loadFont(String)
56+ * @see PGraphics#textFont(PFont)
57+ * @see PGraphics#text(char, float, float)
5558 */
5659public class PFont implements PConstants {
5760
@@ -181,11 +184,8 @@ public PFont() { } // for subclasses
181184 * ( end auto-generated )
182185 *
183186 * @webref typography:pfont
184- * @param font
185- * @param smooth
186- * @see PApplet#loadFont(String)
187- * @see PGraphics#textFont(PFont, float)
188- * @see PGraphics#text(String, float, float)
187+ * @param font font the font object to create from
188+ * @param smooth smooth true to enable smoothing/anti-aliasing
189189 */
190190 public PFont (Font font , boolean smooth ) {
191191 this (font , smooth , null );
@@ -196,9 +196,7 @@ public PFont(Font font, boolean smooth) {
196196 * Create a new image-based font on the fly. If charset is set to null,
197197 * the characters will only be created as bitmaps when they're drawn.
198198 *
199- * @param font the font object to create from
200199 * @param charset array of all unicode chars that should be included
201- * @param smooth true to enable smoothing/anti-aliasing
202200 */
203201 public PFont (Font font , boolean smooth , char charset []) {
204202 // save this so that we can use the native version
0 commit comments