(String what, float much)
| 593 | |
| 594 | |
| 595 | protected void create(String what, float much) { |
| 596 | if (count == keys.length) { |
| 597 | keys = PApplet.expand(keys); |
| 598 | values = PApplet.expand(values); |
| 599 | } |
| 600 | indices.put(what, Integer.valueOf(count)); |
| 601 | keys[count] = what; |
| 602 | values[count] = much; |
| 603 | count++; |
| 604 | } |
| 605 | |
| 606 | |
| 607 | /** |