![]() |
Projet d'Informatique 2012
Simulation générique de systèmes physiques simples : vers les machines de Rube Goldberg
|
00001 00005 #ifndef INTEGRATEURRUNGEKUTTA_H 00006 #define INTEGRATEURRUNGEKUTTA_H 00007 00008 #include "Integrateur.h" 00009 #include "ObjetMobile.h" 00010 #include "Vecteur.h" 00011 00017 class IntegrateurRungeKutta: public Integrateur 00018 { 00019 public: 00020 00025 IntegrateurRungeKutta(double const& dt = 0.01); 00026 00030 virtual ~IntegrateurRungeKutta(); 00031 00036 virtual void integre(ObjetMobile& objet) const; 00037 }; 00038 00039 #endif // INTEGRATEURRUNGEKUTTA_H