Width of this character for a font of size 1.
(char c)
| 702 | * Width of this character for a font of size 1. |
| 703 | */ |
| 704 | public float width(char c) { |
| 705 | if (c == 32) return width('i'); |
| 706 | |
| 707 | int cc = index(c); |
| 708 | if (cc == -1) return 0; |
| 709 | |
| 710 | return ((float) glyphs[cc].setWidth / (float) size); |
| 711 | } |
| 712 | |
| 713 | |
| 714 | ////////////////////////////////////////////////////////////// |