(String what, float much)
| 627 | |
| 628 | |
| 629 | protected void create(String what, float much) { |
| 630 | if (count == keys.length) { |
| 631 | keys = PApplet.expand(keys); |
| 632 | values = PApplet.expand(values); |
| 633 | } |
| 634 | indices.put(what, Integer.valueOf(count)); |
| 635 | keys[count] = what; |
| 636 | values[count] = much; |
| 637 | count++; |
| 638 | } |
| 639 | |
| 640 | |
| 641 | /** |