|
| const DoubleTab & | valeurs () const |
| | Returns the value array of the Roue.
|
| DoubleTab & | valeurs () |
| | Returns the value array of the Roue.
|
| | Roue () |
| | Default constructor. Builds a wheel with a single slot at time t=0.
|
| | Roue (const Roue &) |
| | Copy constructor. Copies the time, values, and values of future wheels.
|
| | ~Roue () |
| | Destructor.
|
| void | dimensionner (int nb_val) |
| | Resizes (1D) the values of the Roue and its future wheels.
|
| void | dimensionner (int nb_val, int nb_comp) |
| | Resizes (2D) the values of the Roue and its future wheels.
|
| int | nb_cases () const |
| | Returns the number of slots in the Roue.
|
| int | fixer_nb_cases (int) |
| | Changes the number of slots in the Roue.
|
| void | ajouter_case (int n=1) |
| | Adds n slots to the Roue.
|
| void | supprimer_case (int n=1) |
| | Removes n slots from the Roue.
|
| double | temps () const |
| | Returns the time value of the Roue.
|
| double | changer_temps (const double t) |
| | Changes the time of the Roue.
|
| const Roue & | futur (int i=1) const |
| | Returns the Roue corresponding to the i-th future slot.
|
| Roue & | futur (int i=1) |
| | Returns the Roue corresponding to the i-th future slot.
|
| const Roue & | passe (int i=1) const |
| | Returns the Roue corresponding to the i-th past slot.
|
| Roue & | passe (int i=1) |
| | Returns the Roue corresponding to the i-th past slot.
|
| Roue & | operator= (const Roue &) |
| | Assignment operator for a Roue. Copies the time, values, number of slots, and future slot values.
|
| void | avancer (Roue_ptr &ptr) |
| void | reculer (Roue_ptr &ptr) |
Roue class used in Champ_Inc_Base.
Manages the number of time values for which the field must remain in memory.
- See also
- Champ_Inc
Definition at line 85 of file Roue.h.