branch for cuboid

Unwrapper.h

Committer:
altb2
Date:
2019-03-07
Revision:
0:72b60c5271cc

File content as of revision 0:72b60c5271cc:

/*  
*/

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;

};