From 3a018d380395889059bf582015fb2935a9a20fb0 Mon Sep 17 00:00:00 2001
From: mihaf <miha.fosnaric@gmail.com>
Date: Thu, 27 Feb 2014 14:55:13 +0000
Subject: [PATCH] Bug found and removed: polys now also translated when origin moves to the center of mass. All seems OK after firt testing. :)

---
 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