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