Jamoma API  0.6.0.a19
TTCubicEaseInOutFunction.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup dspFunctionLib
4  *
5  * @brief #TTCubicEaseInOutFunction Unit for Jamoms DSP
6  *
7  * @details Modeled after the piecewise cubic @n
8  y = (1/2)((2x)^3) ; [0, 0.5) @n
9  y = (1/2)((2x-2)^3 + 2) ; [0.5, 1] @n
10  * @n
11  * Derived from Sam Hocevar's public domain C/C++ implementation of
12  * Robert Penner easing functions
13  *
14  * @authors Trond Lossius
15  *
16  * @copyright Copyright © 2014 by Trond Lossius @n
17  * This code is licensed under the terms of the "New BSD License" @n
18  * http://creativecommons.org/licenses/BSD/
19  */
20 
21 
23 
24 #define thisTTClass TTCubicEaseInOutFunction
25 #define thisTTClassName "easeInOutCubic"
26 #define thisTTClassTags "dspFunctionLib, audio, processor, function"
27 
28 
29 TT_AUDIO_CONSTRUCTOR
30 {
31  setProcessMethod(processAudio);
32  setCalculateMethod(calculateValue);
33 }
34 
35 
36 TTCubicEaseInOutFunction::~TTCubicEaseInOutFunction()
37 {
38  ;
39 }
40 
41 
43 {
44  if (x < 0.5)
45  {
46  y = 4 * x * x * x;
47  }
48  else
49  {
50  TTFloat64 f = ((2 * x) - 2);
51  y = 0.5 * f * f * f + 1;
52  }
53  return kTTErrNone;
54 }
55 
56 
58 {
59  TT_WRAP_CALCULATE_METHOD(calculateValue);
60 }
61 
TTErr calculateValue(const TTFloat64 &x, TTFloat64 &y, TTPtrSizedInt data)
y = f(x) for a single value
TTCubicEaseInOutFunction Unit for Jamoms DSP
#define setProcessMethod(methodName)
A convenience macro to be used by subclasses for setting the process method.
double TTFloat64
64 bit floating point number
Definition: TTBase.h:188
#define setCalculateMethod(methodName)
A convenience macro to be used by subclasses for setting the calculate method.
TTErr processAudio(TTAudioSignalArrayPtr inputs, TTAudioSignalArrayPtr outputs)
A standard audio processing method as used by TTBlue objects.
A simple container for an array of TTAudioSignal pointers.
long TTPtrSizedInt
An integer that is the same size as a pointer.
Definition: TTBase.h:240
TTErr
Jamoma Error Codes Enumeration of error codes that might be returned by any of the TTBlue functions a...
Definition: TTBase.h:342
No Error.
Definition: TTBase.h:343