summaryrefslogtreecommitdiff
path: root/sndobj/HarmTable.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/HarmTable.h
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj/HarmTable.h')
-rw-r--r--sndobj/HarmTable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sndobj/HarmTable.h b/sndobj/HarmTable.h
index da4e360..98671df 100644
--- a/sndobj/HarmTable.h
+++ b/sndobj/HarmTable.h
@@ -37,7 +37,7 @@ class HarmTable : public Table {
protected :
int m_harm;
- float m_phase;
+ double m_phase;
int m_typew;
public:
@@ -47,8 +47,8 @@ class HarmTable : public Table {
char* ErrorMessage();
short MakeTable();
HarmTable();
- void SetPhase(float phase){ m_phase = (float)(phase*TWOPI); }
- HarmTable(long L, int harm, int type, float phase=0.f);
+ void SetPhase(double phase){ m_phase = (double)(phase*TWOPI); }
+ HarmTable(long L, int harm, int type, double phase=0.f);
~HarmTable();
};