[Bf-blender-cvs] [d0e80b5] master: Fix another Freestyle building glitch.

Bastien Montagne noreply at git.blender.org
Thu Apr 17 14:52:45 CEST 2014


Commit: d0e80b50e92d6c4099f7c4839cf587199d01498c
Author: Bastien Montagne
Date:   Thu Apr 17 14:39:13 2014 +0200
https://developer.blender.org/rBd0e80b50e92d6c4099f7c4839cf587199d01498c

Fix another Freestyle building glitch.

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

M	source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp

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

diff --git a/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp b/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
index e1eebd8..ee885f2 100644
--- a/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
+++ b/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
@@ -298,11 +298,11 @@ iter:
 		}
 #if 0
 		if (G.debug & G_DEBUG_FREESTYLE) {
-			printf("SilhouetteGeomEngine::ImageToWorldParameter(): #iters = %d, dist = %e\n", i, dist);
+			cout << "SilhouetteGeomEngine::ImageToWorldParameter(): #iters = " << i << ", dist = " << dist << "\n";
 		}
 #endif
 		if (i == max_iters && G.debug & G_DEBUG_FREESTYLE) {
-			printf("SilhouetteGeomEngine::ImageToWorldParameter(): reached to max_iters (dist = %e)\n", dist);
+			cout << "SilhouetteGeomEngine::ImageToWorldParameter(): reached to max_iters (dist = " << dist << ")\n";
 		}
 	}




More information about the Bf-blender-cvs mailing list