Engine
verlet.h
1 #include <time_integrator.h>
2 
3 #ifndef VERLET_H
4 #define VERLET_H
5 
9 class Verlet : public TimeIntegrator{
10 
11  public :
15  Verlet();
16 
21  Verlet(GLfloat dt);
22 
23  private:
24 
31  void Solve(
32  const NetForceAccumulator& net_force_accumulator,
33  const std::vector<std::shared_ptr<PhysicsEntity>> &entity_ptrs,
34  const std::shared_ptr<PhysicsEntity> entity_ptr);
35 
36 };
37 #endif
Verlet()
Definition: verlet.cpp:3
An abstact base class for all grid based numerical ODE solvers for Newton&#39;s laws. ...
Definition: time_integrator.h:11
Implementation of velocity Verlet method for solving Newton&#39;s Laws.
Definition: verlet.h:9
Definition: net_force_accumulator.h:14