From 074a178761daa61a419ef9c2f38f9cd7adc0cdc7 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Thu, 07 Jun 2012 13:25:08 +0000 Subject: [PATCH] Added sh_init and sh_free for given datastructure. --- src/vesicle.c | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/vesicle.c b/src/vesicle.c index d6c29e1..e1cc21d 100644 --- a/src/vesicle.c +++ b/src/vesicle.c @@ -36,3 +36,21 @@ free(vesicle); return TS_SUCCESS; } + +ts_bool vesicle_volume(ts_vesicle *vesicle){ + ts_double volume; + ts_double vol; + ts_uint i; + ts_triangle **tria=vesicle->tlist->tria; + volume=0; + for(i=0; i<vesicle->tlist->n;i++){ + vol=(tria[i]->vertex[0]->x+ tria[i]->vertex[1]->x + tria[i]->vertex[2]->x) * tria[i]->xnorm + + (tria[i]->vertex[0]->y+ tria[i]->vertex[1]->y + tria[i]->vertex[2]->y) * tria[i]->ynorm + + (tria[i]->vertex[0]->z+ tria[i]->vertex[1]->z + tria[i]->vertex[2]->z) * +tria[i]->znorm; + volume=volume-vol/18.0; + } + + vesicle->volume=volume; + return TS_SUCCESS; +} -- Gitblit v1.9.3