From 6705af6d3d02e47a797c53146666a1d168e1aefc Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Thu, 06 Mar 2014 08:56:37 +0000 Subject: [PATCH] Merge branch 'trisurf-polyel'. It is the most debugged version. True, without polymeres dump may not work yet, still, from scratch with polymeres set to 0, there should be minimal time penalty. --- src/frame.c | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/frame.c b/src/frame.c index 1ee270b..d2d7e10 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3,7 +3,7 @@ #include "cell.h" #include "frame.h" ts_bool centermass(ts_vesicle *vesicle){ - ts_uint i, n=vesicle->vlist->n; + ts_uint i,j, n=vesicle->vlist->n; ts_vertex **vtx=vesicle->vlist->vtx; vesicle->cm[0]=0; vesicle->cm[1]=0; @@ -23,6 +23,15 @@ vtx[i]->z-=vesicle->cm[2]; } + for(i=0;i<vesicle->poly_list->n;i++){ + for(j=0;j<vesicle->poly_list->poly[i]->vlist->n;j++){ + vesicle->poly_list->poly[i]->vlist->vtx[j]->x-=vesicle->cm[0]; + vesicle->poly_list->poly[i]->vlist->vtx[j]->y-=vesicle->cm[1]; + vesicle->poly_list->poly[i]->vlist->vtx[j]->z-=vesicle->cm[2]; + } + } + + vesicle->cm[0]=0; vesicle->cm[1]=0; vesicle->cm[2]=0; -- Gitblit v1.9.3