AAX SDK  2.4.1
Avid Audio Extensions Development Kit
Classes

Classes for conversion to and from normalized parameter values.

Taper delegates are used to convert real parameter values to and from their normalized representations. All taper delegates implement the AAX_ITaperDelegate<T> interface template, which contains two conversion functions:

virtual T NormalizedToReal(double normalizedValue) const = 0;
virtual double RealToNormalized(T realValue) const = 0;

In addition, tapers may incorporate logical value constraints via the following interface methods:

virtual T GetMaximumValue() const = 0;
virtual T GetMinimumValue() const = 0;
virtual T ConstrainRealValue(T value) const = 0;

For more information, see the AAX_ITaperDelegate class documentation.

Classes

class  AAX_ITaperDelegateBase
 Defines the taper conversion behavior for a parameter. More...
 
class  AAX_ITaperDelegate< T >
 Classes for conversion to and from normalized parameter values. More...
 
Collaboration diagram for Taper delegates: