Public Member Functions | |
| FloatList () | |
| void | clear (void) |
| void | append (float value) |
| float | at (int i) |
| int | count (void) |
The FloatList class contains a list of float values.
| FloatList::FloatList | ( | ) |
Creates an empty list.
| void FloatList::append | ( | float | value) |
Appends a float value to the end of the list.
| item | The float value to be appended. |
| float FloatList::at | ( | int | i) |
Returns the float at the specified index.
| The | index to be retrived. |
| void FloatList::clear | ( | void | ) |
Clears the list.
| int FloatList::count | ( | void | ) |
Returns the number of floats inside the list.
1.8.4