pendulum68k/pendulum.h

1 line
181 B
C
Raw Normal View History

2019-04-03 20:54:48 +00:00
#ifndef PENDULUM_H #define PENDULUM_H struct pendulum_t { double theta, d_theta; double mu, gl, timestep; }; double pendulum_iter(struct pendulum_t *p); #endif /* PENDULUM_H */