Jamoma API  0.6.0.a19
TTBackEaseInOutFunction.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup dspFunctionLib
4  *
5  * @brief #TTBackEaseInOutFunction Unit for Jamoms DSP
6  *
7  * @details Modeled after the piecewise overshooting cubic function: @n
8  * y = (1/2)*((2x)^3-(2x)*sin(2*x*pi)) ; [0, 0.5) @n
9  * y = (1/2)*(1-((1-x)^3-(1-x)*sin((1-x)*pi))+1) ; [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 TTBackEaseInOutFunction
25 #define thisTTClassName "easeInOutBack"
26 #define thisTTClassTags "dspFunctionLib, audio, processor, function"
27 
28 
29 TT_AUDIO_CONSTRUCTOR
30 {
31  setProcessMethod(processAudio);
32  setCalculateMethod(calculateValue);
33 }
34 
35 
36 TTBackEaseInOutFunction::~TTBackEaseInOutFunction()
37 {
38  ;
39 }
40 
41 
43 {
44  if (x < 0.5)
45  {
46  TTFloat64 f = 2 * x;
47  y = 0.5 * (f * f * f - f * sin(f * kTTPi));
48  }
49  else
50  {
51  TTFloat64 f = (1 - (2*x - 1));
52  y = 0.5 * (1 - (f * f * f - f * sin(f * kTTPi))) + 0.5;
53  }
54  return kTTErrNone;
55 }
56 
57 
59 {
60  TT_WRAP_CALCULATE_METHOD(calculateValue);
61 }
62 
TTErr processAudio(TTAudioSignalArrayPtr inputs, TTAudioSignalArrayPtr outputs)
A standard audio processing method as used by TTBlue objects.
#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.
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
TTFOUNDATION_EXPORT const TTFloat64 kTTPi
[doxygenAppendixC_constExample]
Definition: TTBase.cpp:23
TTErr calculateValue(const TTFloat64 &x, TTFloat64 &y, TTPtrSizedInt data)
y = f(x) for a single value
TTBackEaseInOutFunction Unit for Jamoms DSP