Jamoma API  0.6.0.a19
Scarabaeus2D.h
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup dspTrajectoryLib
4  *
5  * @brief Scarabaeus Function Unit for Jamoma DSP
6  *
7  * @details see http://mathworld.wolfram.com/Scarabaeus.html for details @n
8  *
9  * @authors Nils Peters
10  *
11  * @copyright Copyright © 2011 by Nils Peters @n
12  * This code is licensed under the terms of the "New BSD License" @n
13  * http://creativecommons.org/licenses/BSD/
14  */
15 
16 #ifndef __SCARABAEUS_2D_H__
17 #define __SCARABAEUS_2D_H__
18 
19 #include "TTDSP.h"
20 
21 
22 class Scarabaeus2D : TTAudioObjectBase {
23  TTCLASS_SETUP(Scarabaeus2D)
24 
25 protected:
26 
27  TTFloat64 mA, mB;
28 
29  /** A standard audio processing method as used by Jamoma DSP objects.
30  @param inputs The input vector that is to be processed.
31  @param outputs The resulting windowed vector.
32  @return #TTErr error code if the method fails to execute, else #kTTErrNone.
33  */
34  TTErr processAudio(TTAudioSignalArrayPtr inputs, TTAudioSignalArrayPtr outputs);
35 };
36 
37 
38 #endif // __SCARABAEUS_2D_H__
TTAudioObjectBase is the base class for all audio generating and processing objects in Jamoma DSP...
Jamoma DSP Library.
double TTFloat64
64 bit floating point number
Definition: TTBase.h:188
#define TTCLASS_SETUP(className)
TODO Doxygen: need more comments here.
Definition: TTFoundation.h:54
A simple container for an array of TTAudioSignal pointers.
TTErr
Jamoma Error Codes Enumeration of error codes that might be returned by any of the TTBlue functions a...
Definition: TTBase.h:342