Used by PGraphics to remove the requirement for loading a font.
(float size)
| 4109 | * Used by PGraphics to remove the requirement for loading a font. |
| 4110 | */ |
| 4111 | protected PFont createDefaultFont(float size) { |
| 4112 | Font baseFont = new Font("Lucida Sans", Font.PLAIN, 1); |
| 4113 | return createFont(baseFont, size, true, null, false); |
| 4114 | } |
| 4115 | |
| 4116 | |
| 4117 | protected PFont createFont(String name, float size, |
no test coverage detected