|
|
|
@@ -47,12 +47,10 @@ public: |
|
|
|
NormalisableRange (const NormalisableRange& other) noexcept
|
|
|
|
: start (other.start), end (other.end),
|
|
|
|
interval (other.interval), skew (other.skew),
|
|
|
|
symmetricSkew (other.symmetricSkew)
|
|
|
|
#if JUCE_COMPILER_SUPPORTS_LAMBDAS
|
|
|
|
, convertFrom0To1Function (other.convertFrom0To1Function)
|
|
|
|
, convertTo0To1Function (other.convertTo0To1Function)
|
|
|
|
, snapToLegalValueFunction (other.snapToLegalValueFunction)
|
|
|
|
#endif
|
|
|
|
symmetricSkew (other.symmetricSkew),
|
|
|
|
convertFrom0To1Function (other.convertFrom0To1Function),
|
|
|
|
convertTo0To1Function (other.convertTo0To1Function),
|
|
|
|
snapToLegalValueFunction (other.snapToLegalValueFunction)
|
|
|
|
{
|
|
|
|
checkInvariants();
|
|
|
|
}
|
|
|
|
@@ -65,11 +63,9 @@ public: |
|
|
|
interval = other.interval;
|
|
|
|
skew = other.skew;
|
|
|
|
symmetricSkew = other.symmetricSkew;
|
|
|
|
#if JUCE_COMPILER_SUPPORTS_LAMBDAS
|
|
|
|
convertFrom0To1Function = other.convertFrom0To1Function;
|
|
|
|
convertTo0To1Function = other.convertTo0To1Function;
|
|
|
|
convertFrom0To1Function = other.convertFrom0To1Function;
|
|
|
|
convertTo0To1Function = other.convertTo0To1Function;
|
|
|
|
snapToLegalValueFunction = other.snapToLegalValueFunction;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
checkInvariants();
|
|
|
|
|
|
|
|
|