Jamoma API  0.6.0.a19
Linear2D.h
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup dspTrajectoryLib
4  *
5  * @brief Linear Function Unit in 2D for Jamoma DSP
6  *
7  * @details a simple linear function in two dimensions @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 
17 #ifndef __LINEAR_2D_H__
18 #define __LINEAR_2D_H__
19 
20 #include "TTDSP.h"
21 
22 
23 /** This implements a function which basically does nothing:
24  y = f(x)
25  */
28 
29 protected:
30 
31  TTFloat64 mA;
32 
33  /** A standard audio processing method as used by Jamoma DSP objects.
34  @param inputs The input vector that is to be processed.
35  @param outputs The resulting windowed vector.
36  @return #TTErr error code if the method fails to execute, else #kTTErrNone.
37  */
39 };
40 
41 
42 #endif // __LINEAR_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
This implements a function which basically does nothing: y = f(x)
Definition: Linear2D.h:26
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
TTErr processAudio(TTAudioSignalArrayPtr inputs, TTAudioSignalArrayPtr outputs)
A standard audio processing method as used by Jamoma DSP objects.
Definition: Linear2D.cpp:37