Merge with dev
This commit is contained in:
@@ -1475,6 +1475,32 @@ public:
|
||||
return lutOpacityCurveRG;
|
||||
}
|
||||
};
|
||||
|
||||
class WavOpacityCurveSH
|
||||
{
|
||||
private:
|
||||
LUTf lutOpacityCurveSH; // 0xffff range
|
||||
void Set(const Curve &pCurve);
|
||||
public:
|
||||
virtual ~WavOpacityCurveSH() {};
|
||||
WavOpacityCurveSH();
|
||||
|
||||
void Reset();
|
||||
// void Set(const std::vector<double> &curvePoints, bool &opautili);
|
||||
void Set(const std::vector<double> &curvePoints);
|
||||
float operator[](float index) const
|
||||
{
|
||||
return lutOpacityCurveSH[index];
|
||||
}
|
||||
|
||||
operator bool (void) const
|
||||
{
|
||||
return lutOpacityCurveSH;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
class WavOpacityCurveBY
|
||||
{
|
||||
private:
|
||||
|
Reference in New Issue
Block a user