Init blur by levels

This commit is contained in:
Desmis
2020-03-25 18:06:32 +01:00
15 changed files with 316 additions and 143 deletions

View File

@@ -627,26 +627,26 @@ public:
}
};
class WavtmCurve
class Wavblcurve
{
private:
LUTf luttmCurve; // 0xffff range
LUTf lutblcurve; // 0xffff range
void Set(const Curve &pCurve);
public:
virtual ~WavtmCurve() {};
WavtmCurve();
virtual ~Wavblcurve() {};
Wavblcurve();
void Reset();
// void Set(const std::vector<double> &curvePoints, bool &opautili);
void Set(const std::vector<double> &curvePoints);
float operator[](float index) const
{
return luttmCurve[index];
return lutblcurve[index];
}
operator bool (void) const
{
return luttmCurve;
return lutblcurve;
}
};