[Bf-blender-cvs] [f336ca5] master: Minor fix in debug print, so solver prints can be diff'ed.

Lukas Tönne noreply at git.blender.org
Tue Jan 20 09:50:01 CET 2015


Commit: f336ca5952b005c946c92e2d0f0b333152b17191
Author: Lukas Tönne
Date:   Wed Sep 10 17:10:14 2014 +0200
Branches: master
https://developer.blender.org/rBf336ca5952b005c946c92e2d0f0b333152b17191

Minor fix in debug print, so solver prints can be diff'ed.

===================================================================

M	source/blender/blenkernel/intern/implicit.c

===================================================================

diff --git a/source/blender/blenkernel/intern/implicit.c b/source/blender/blenkernel/intern/implicit.c
index 01b572c..c401eef 100644
--- a/source/blender/blenkernel/intern/implicit.c
+++ b/source/blender/blenkernel/intern/implicit.c
@@ -366,9 +366,9 @@ static void print_lvector(lfVector *v, int numverts)
 		if (i > 0)
 			printf("\n");
 		
-		printf("%f\n", v[i][0]);
-		printf("%f\n", v[i][1]);
-		printf("%f\n", v[i][2]);
+		printf("%f,\n", v[i][0]);
+		printf("%f,\n", v[i][1]);
+		printf("%f,\n", v[i][2]);
 	}
 }




More information about the Bf-blender-cvs mailing list