From da4e4dcb2e8e863a89512d814e7807a33994f87c Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Sun, 22 Jan 2006 23:59:01 +0000 Subject: [PATCH] changed default value of diffuse. 1.0 -> 0.8 --- src/test/io/export_3ds.h | 5 ++++- src/test/io/export_obj.h | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/test/io/export_3ds.h b/src/test/io/export_3ds.h index 3e12cb59e..5440344aa 100644 --- a/src/test/io/export_3ds.h +++ b/src/test/io/export_3ds.h @@ -25,6 +25,9 @@ History $Log$ + Revision 1.27 2006/01/22 23:59:01 fmazzant + changed default value of diffuse. 1.0 -> 0.8 + Revision 1.26 2006/01/22 10:42:18 fmazzant cleaned code & optimized code of material's name 3ds @@ -329,7 +332,7 @@ namespace io { else if (r != 0 || g != 0 || b != 0) diffuse = Point3f((float)r,(float)g,(float)b); else - diffuse = Point3f(1.0,1.0,1.0); + diffuse = Point3f(0.8,0.8,0.80); float Tr; if(alpha > 1) diff --git a/src/test/io/export_obj.h b/src/test/io/export_obj.h index 8179fc635..8e646e6b1 100644 --- a/src/test/io/export_obj.h +++ b/src/test/io/export_obj.h @@ -25,6 +25,9 @@ History $Log$ + Revision 1.34 2006/01/22 23:59:01 fmazzant + changed default value of diffuse. 1.0 -> 0.8 + Revision 1.33 2006/01/19 09:36:29 fmazzant cleaned up history log @@ -384,7 +387,7 @@ namespace io { else if (r != 0 || g != 0 || b != 0) diffuse = Point3f((float)r,(float)g,(float)b); else - diffuse = Point3f(1.0,1.0,1.0); + diffuse = Point3f(0.8,0.8,0.8); float Tr; if(alpha > 1)