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

Lukas Tönne noreply at git.blender.org
Wed Sep 10 18:56:53 CEST 2014


Commit: e308e99208119dd78f6d4bb719ba140a6b8ee281
Author: Lukas Tönne
Date:   Wed Sep 10 17:10:14 2014 +0200
Branches: hair_immediate_fixes
https://developer.blender.org/rBe308e99208119dd78f6d4bb719ba140a6b8ee281

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 597b107..cffa7cf 100644
--- a/source/blender/blenkernel/intern/implicit.c
+++ b/source/blender/blenkernel/intern/implicit.c
@@ -374,9 +374,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