Add a new entry to the list. @webref floatlist:method @brief Add a new entry to the list
(float value)
| 304 | * @brief Add a new entry to the list |
| 305 | */ |
| 306 | public void append(float value) { |
| 307 | if (count == data.length) { |
| 308 | data = PApplet.expand(data); |
| 309 | } |
| 310 | data[count++] = value; |
| 311 | } |
| 312 | |
| 313 | |
| 314 | public void append(float[] values) { |