#include <rdmAnimationCallback.h>
Inheritance diagram for rdmAnimationCallback:

Public Member Functions | |
| rdmAnimationCallback (rdModel *aModel) | |
| Default constructor. | |
| virtual | ~rdmAnimationCallback () |
| Destructor. | |
| virtual void | begin (int aStep, double aDT, double aT, double *aX, double *aY, void *aClientData=NULL) |
| This method is called at the beginning of an integration and is intended to be used for any initializations that are necessary. | |
| virtual void | step (double *aXPrev, double *aYPrev, int aStep, double aDT, double aT, double *aX, double *aY, void *aClientData=NULL) |
| This method is called after each successful integration time step and is intended to be used for conducting analyses, driving animations, etc. | |
| virtual void | end (int aStep, double aDT, double aT, double *aX, double *aY, void *aClientData=NULL) |
| This method is called after an integration has been completed and is intended to be used for performing any finalizations necessary. | |
Protected Attributes | |
| rdPtrArray | _transforms |
Private Member Functions | |
| void | setNull () |
| Set NULL values for member variables. | |
|
|
Default constructor. Note that this constructor adds the callback to the model. Derived classes should not also add themselves to the model.
|
|
||||||||||||||||||||||||||||
|
This method is called at the beginning of an integration and is intended to be used for any initializations that are necessary. Override this method in derived classes.
Reimplemented from rdIntegCallback. |
|
||||||||||||||||||||||||||||
|
This method is called after an integration has been completed and is intended to be used for performing any finalizations necessary. Override this method in derived classes.
Reimplemented from rdIntegCallback. |
|
||||||||||||||||||||||||||||||||||||
|
This method is called after each successful integration time step and is intended to be used for conducting analyses, driving animations, etc. Override this method in derived classes.
Reimplemented from rdIntegCallback. |
1.3