diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-08-23 13:26:53 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-08-23 13:26:53 +0000 |
commit | 547a9740506d30ddd2f0dc3fe70b436423bc7a43 (patch) | |
tree | d122f73e947f26a5174d0ae00bb8fe7dd06f4181 /src/mtx_qhull.c | |
parent | bbbeb9fcda380ae2ac092c42e36e0eea31846bf0 (diff) |
don't include C-files; link them
svn path=/trunk/externals/iem/iemmatrix/; revision=16171
Diffstat (limited to 'src/mtx_qhull.c')
-rw-r--r-- | src/mtx_qhull.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mtx_qhull.c b/src/mtx_qhull.c index 700821f..7223b4b 100644 --- a/src/mtx_qhull.c +++ b/src/mtx_qhull.c @@ -18,9 +18,6 @@ #include "mtx_qhull/list.h" #include "mtx_qhull/vectors.h" #include "mtx_qhull/zhull.h" -#include "mtx_qhull/list.c" -#include "mtx_qhull/vectors.c" -#include "mtx_qhull/zhull.c" static t_class *mtx_qhull_class; @@ -112,6 +109,8 @@ static void mTXQhullMatrix(MTXQhull *xo, t_symbol *s, SETFLOAT(xo->list,(float)xo->hull_size); SETFLOAT(xo->list+1,(float)3); for (i=0; i<xo->hull_size; i++) { + t_atom*ap=xo->list+2+3*i; + float f=(float)getEntry(getFacetByIndex(xo->zh->facets,i)->corners,0)+1; SETFLOAT(xo->list+2+3*i, (float)getEntry( getFacetByIndex(xo->zh->facets,i)->corners,0)+1); SETFLOAT(xo->list+3+3*i, (float)getEntry( |