Body::step(constengine::integratorintegrator){for(inti=0;i<3;++i){X[i]+=integrator.step(step_size,V[i]);V[i]+=integrator.step(step_size,A[i]);A[i]=Decimal(0);//reset acceleration - it will be calculated for next time
}}
Want to include at least Euler and RUnge-Kutta
```C++
Body::step(const engine::integrator integrator){
for (int i = 0; i < 3; ++i) {
X[i] += integrator.step(step_size, V[i]);
V[i] += integrator.step(step_size, A[i]);
A[i] = Decimal(0); //reset acceleration - it will be calculated for next time
}
}
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Want to include at least Euler and RUnge-Kutta