Revision: 10560 http://pure-data.svn.sourceforge.net/pure-data/?rev=10560&view=rev Author: fzotter Date: 2009-01-16 09:16:39 +0000 (Fri, 16 Jan 2009)
Log Message: ----------- forgot to increase point index for theta in [mtx_spherical_harmonics]
Modified Paths: -------------- trunk/externals/iem/iemmatrix/src/mtx_spherical_harmonics.c
Modified: trunk/externals/iem/iemmatrix/src/mtx_spherical_harmonics.c =================================================================== --- trunk/externals/iem/iemmatrix/src/mtx_spherical_harmonics.c 2009-01-15 15:10:04 UTC (rev 10559) +++ trunk/externals/iem/iemmatrix/src/mtx_spherical_harmonics.c 2009-01-16 09:16:39 UTC (rev 10560) @@ -107,10 +107,9 @@ x->l=columns; allocMTXdata(x); } - for (n=0;n<x->l;n++) { x->phi[n]=(double) atom_getfloat(argv+n); - x->theta[n]=(double) atom_getfloat(argv+columns); + x->theta[n]=(double) atom_getfloat(argv+columns+n); }
if (x->ws!=0) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.