branch for cuboid

Unwrapper.h

Committer:
altb2
Date:
2019-11-22
Revision:
3:b23f59513a90
Parent:
0:72b60c5271cc

File content as of revision 3:b23f59513a90:

/*  
*/

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;

};