Mercurial > hg > beaglert
view examples/airharp/MassSpringDamper.h @ 312:00725dfc1b87 prerelease
Decrufting: removed ancient DBOX_CAPE define from header files (not yet from PRU code)
author | andrewm |
---|---|
date | Fri, 27 May 2016 18:42:28 +0100 |
parents | dbeed520b014 |
children |
line wrap: on
line source
/* * * Simple 1-Dimensional Mass Spring Damper * * Christian Heinrichs 04/2015 * */ #ifndef MASSSPRINGDAMPER_H_ #define MASSSPRINGDAMPER_H_ class MassSpringDamper { public: MassSpringDamper(float mass, float spring, float damp); void setup(); double update(float inForce); private: double _dt; float _mass; float _spring; float _damp; double _position; double _velocity; }; #endif