Width of this character for a font of size 1.
(char c)
| 695 | * Width of this character for a font of size 1. |
| 696 | */ |
| 697 | public float width(char c) { |
| 698 | if (c == 32) return width('i'); |
| 699 | |
| 700 | int cc = index(c); |
| 701 | if (cc == -1) return 0; |
| 702 | |
| 703 | return ((float) glyphs[cc].setWidth / (float) size); |
| 704 | } |
| 705 | |
| 706 | |
| 707 | ////////////////////////////////////////////////////////////// |