16 lines
233 B
C++
Executable File
16 lines
233 B
C++
Executable File
#include "Arduino.h"
|
|
|
|
#pragma once
|
|
|
|
class SpringMassDamper {
|
|
public:
|
|
SpringMassDamper(float m, float k, float d, float* out = NULL);
|
|
|
|
float position(int x);
|
|
|
|
float X, V, F;
|
|
float _m, _k, _d;
|
|
long _tick;
|
|
float* _out;
|
|
|
|
}; |