cleaning and notes

This commit is contained in:
benfry
2005-06-13 13:36:39 +00:00
parent 52168b4a6a
commit bc9d78a641
4 changed files with 30 additions and 48 deletions
-22
View File
@@ -644,28 +644,6 @@ public class PFont implements PConstants {
};
/**
* Create a new .vlw font on the fly. See documentation with
* the later version of this constructor.
*/
/*
public PFont(String name, int fontsize) {
this(new Font(name, Font.PLAIN, fontsize), false, true);
}
*/
/**
* Create a new .vlw font on the fly. See documentation with
* the later version of this constructor.
*/
/*
public PFont(String name, int fontsize, boolean smooth) {
this(new Font(name, Font.PLAIN, fontsize), false, smooth);
}
*/
/**
* Use reflection to create a new .vlw font on the fly.
* This only works with Java 1.3 and higher.