From a61c001cd35ff70a314ef417c4beda9c7e68d3ad Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Fri, 13 Jun 2014 19:52:04 +0000
Subject: [PATCH] It works, png is output. The only problem is that some triangles are missing

---
 src/frame.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/frame.c b/src/frame.c
index 237aa87..ec94292 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -3,6 +3,8 @@
 #include "cell.h"
 #include "frame.h"
 
+
+#include "triangle.h"
 ts_bool centermass(ts_vesicle *vesicle){
     ts_uint i,j, n=vesicle->vlist->n;
     ts_vertex **vtx=vesicle->vlist->vtx;
@@ -44,6 +46,11 @@
     vesicle->cm[1]=0.0;
     vesicle->cm[2]=0.0;
 
+    for(i=0;i<vesicle->tlist->n;i++){
+        triangle_normal_vector(vesicle->tlist->tria[i]);
+    }
+
+
     return TS_SUCCESS;
 }
 

--
Gitblit v1.9.3