Mercurial > hg > aimc
diff swig/example.py @ 162:9fcf55c040fe
- Added property svn:eol-style native to all text files
author | tomwalters |
---|---|
date | Thu, 22 Jul 2010 04:14:20 +0000 |
parents | a61f41b221e1 |
children | af02b6addf7a |
line wrap: on
line diff
--- a/swig/example.py Thu Jul 22 01:19:52 2010 +0000 +++ b/swig/example.py Thu Jul 22 04:14:20 2010 +0000 @@ -17,11 +17,10 @@ # limitations under the License. import aimc -module_params = aimc.Parameters() -global_params = aimc.Parameters() -mod_gauss = aimc.ModuleGaussians(module_params) +params = aimc.Parameters() +mod_gauss = aimc.ModuleGaussians(params) sig = aimc.SignalBank() sig.Initialize(115, 1, 44100) -mod_gauss.Initialize(sig, global_params) +mod_gauss.Initialize(sig) mod_gauss.Process(sig)