From 555fd8b3ff5c121d9faff1000d664fc653c912bf Mon Sep 17 00:00:00 2001
From: mihaf <miha.fosnaric@gmail.com>
Date: Wed, 02 Apr 2014 09:43:19 +0000
Subject: [PATCH] In cell.c changed comparison between vertices in a cell from idx to pointer (to avoid bug that two distinct vertices with same idx are not checked for proximity).

---
 src/bond.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bond.c b/src/bond.c
index 4d11c97..ce255ca 100644
--- a/src/bond.c
+++ b/src/bond.c
@@ -38,9 +38,9 @@
 
 ts_bool bond_vector(ts_bond *bond){
 	
-	bond->x=bond->vtx1->x-bond->vtx2->x;
-	bond->y=bond->vtx1->y-bond->vtx2->y;
-	bond->z=bond->vtx1->z-bond->vtx2->z;
+	bond->x = bond->vtx1->x - bond->vtx2->x;
+	bond->y = bond->vtx1->y - bond->vtx2->y;
+	bond->z = bond->vtx1->z - bond->vtx2->z;
 
 	return TS_SUCCESS;	
 }

--
Gitblit v1.9.3