Jamoma API  0.6.0.a19
LogSpiral2D.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup dspTrajectoryLib
4  *
5  * @brief Spiral Function Unit in 2D for Jamoma DSP
6  *
7  * @details see http://mathworld.wolfram.com/LogarithmicSpiral.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 #include "LogSpiral2D.h"
17 
18 
19 #define thisTTClass LogSpiral2D
20 #define thisTTClassName "log.spiral.2D"
21 #define thisTTClassTags "audio, trajectory, sprial, logarithmic, 2D"
22 
23 
24 TT_AUDIO_CONSTRUCTOR
25 {
27  setProcessMethod(processAudio);
28 // setCalculateMethod(calculateValue);
29 }
30 
31 
32 LogSpiral2D::~LogSpiral2D()
33 {
34  ;
35 }
36 
37 //TTErr LogSpiral2D::calculateValue(const TTFloat64& x, TTFloat64& y, TTPtrSizedInt data)
38 //{
39 // y = x;
40 // return kTTErrNone;
41 //}
42 
43 
44 TTErr LogSpiral2D::processAudio(TTAudioSignalArrayPtr inputs, TTAudioSignalArrayPtr outputs)
45 {
46  TTAudioSignal& out = outputs->getSignal(0);
47  TTChannelCount numOutputChannels = out.getNumChannelsAsInt();
48 
49  if (numOutputChannels != 2) {
50  TTValue v = 2;
51  out.setMaxNumChannels(v);
52  out.setNumChannels(v);
53  }
54 
55  TTAudioSignal& in0 = inputs->getSignal(0);
56  TTUInt16 vs = in0.getVectorSizeAsInt();
57 
58  TTSampleValuePtr inSampleX = in0.mSampleVectors[0];
59  TTSampleValuePtr outSampleX = out.mSampleVectors[0];
60  TTSampleValuePtr outSampleY = out.mSampleVectors[1];
61 
62  TTFloat64 phi, r;
63 
64  for (int i=0; i<vs; i++) {
65 
66  phi = inSampleX[i] * kTTPi; // 0 .. 2Pi
67  r = exp(mA * phi);
68  outSampleX[i] = r * cos(phi);
69  outSampleY[i] = r * sin(phi);
70 
71  }
72 return kTTErrNone;
73 }
std::uint16_t TTUInt16
16 bit unsigned integer
Definition: TTBase.h:176
#define addAttribute(name, type)
A convenience macro to be used by subclasses for registering attributes with a custom getter...
Definition: TTAttribute.h:29
#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
TTErr setMaxNumChannels(const TTValue &newMaxNumChannels)
Attribute accessor.
64-bit floating point
Definition: TTBase.h:272
The TTAudioSignal class represents N vectors of audio samples for M channels.
Definition: TTAudioSignal.h:57
TTSampleValue ** mSampleVectors
An array of pointers to the first sample in each vector. Declared Public for fast access...
Definition: TTAudioSignal.h:74
TTUInt16 TTChannelCount
Data type used when counting the number of channels in multi-channel audio signals and processes...
Definition: TTAudioSignal.h:31
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
No Error.
Definition: TTBase.h:343
TTFOUNDATION_EXPORT const TTFloat64 kTTPi
[doxygenAppendixC_constExample]
Definition: TTBase.cpp:23
[doxygenAppendixC_copyExample]
Definition: TTValue.h:34
Spiral Function Unit in 2D for Jamoma DSP.