merge with dev

This commit is contained in:
Desmis
2020-03-29 18:31:52 +02:00
17 changed files with 705 additions and 87 deletions

View File

@@ -1429,6 +1429,30 @@ public:
}
};
class Wavblcurve
{
private:
LUTf lutblcurve; // 0xffff range
void Set(const Curve &pCurve);
public:
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 lutblcurve[index];
}
operator bool (void) const
{
return lutblcurve;
}
};
class WavOpacityCurveRG
{
private: