From ce65c30264be9683dd3a59b35730d2f31e02d37f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 21 Oct 2010 13:39:28 +0100 Subject: 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. --- sndobj/HammingTable.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sndobj/HammingTable.h') diff --git a/sndobj/HammingTable.h b/sndobj/HammingTable.h index fe940c6..9a054ec 100644 --- a/sndobj/HammingTable.h +++ b/sndobj/HammingTable.h @@ -33,15 +33,15 @@ class HammingTable : public Table { protected : - float m_alpha; + double m_alpha; public: - void SetParam(long L, float alpha=.54); + void SetParam(long L, double alpha=.54); char* ErrorMessage(); short MakeTable(); HammingTable(); - HammingTable(long L, float alpha); + HammingTable(long L, double alpha); ~HammingTable(); }; -- cgit v1.2.3