From 8b865c01cd659006a721f4db3d6796d618c35d3c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 30 Jun 2012 22:49:33 +0000 Subject: style cleanup: comments --- source/blender/bmesh/operators/bmo_hull.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/bmesh/operators/bmo_hull.c') diff --git a/source/blender/bmesh/operators/bmo_hull.c b/source/blender/bmesh/operators/bmo_hull.c index cfff3d63ca1..1bd2f41209b 100644 --- a/source/blender/bmesh/operators/bmo_hull.c +++ b/source/blender/bmesh/operators/bmo_hull.c @@ -141,8 +141,8 @@ static void hull_add_triangle(BMesh *bm, GHash *hull_triangles, BLI_mempool *poo static int hull_point_tri_side(const HullTriangle *t, const float co[3]) { /* Added epsilon to fix bug [#31941], improves output when some - vertices are nearly coplanar. Might need further tweaking for - other cases though. */ + * vertices are nearly coplanar. Might need further tweaking for + * other cases though. */ float p[3], d, epsilon = 0.0001; sub_v3_v3v3(p, co, t->v[0]->co); d = dot_v3v3(t->no, p); -- cgit v1.2.3