
template for students for mirror actuator
Lib_Misc/Unwrapper.h
- Committer:
- altb2
- Date:
- 2022-03-06
- Revision:
- 3:d672a96eeecc
- Parent:
- 0:d2e117716219
File content as of revision 3:d672a96eeecc:
/* */ using namespace std; class Unwrapper { public: Unwrapper(double); double operator()(short inc) { return doStep(inc); } virtual ~Unwrapper(); void reset(void); double doStep(short inc); private: long last_value; double inc2rad; };