[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55677] branches/soc-2008-mxcurioni: Updated default line style parameters.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sat Mar 30 17:43:00 CET 2013


Revision: 55677
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55677
Author:   kjym3
Date:     2013-03-30 16:42:59 +0000 (Sat, 30 Mar 2013)
Log Message:
-----------
Updated default line style parameters.
- Line color set to black.
- Line thickness set to 3.
Based on review comments by IRIE Shinsuke.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/release/datafiles/startup.blend
    branches/soc-2008-mxcurioni/source/blender/blenkernel/intern/linestyle.c

Modified: branches/soc-2008-mxcurioni/release/datafiles/startup.blend
===================================================================
(Binary files differ)

Modified: branches/soc-2008-mxcurioni/source/blender/blenkernel/intern/linestyle.c
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/blenkernel/intern/linestyle.c	2013-03-30 11:40:09 UTC (rev 55676)
+++ branches/soc-2008-mxcurioni/source/blender/blenkernel/intern/linestyle.c	2013-03-30 16:42:59 UTC (rev 55677)
@@ -76,9 +76,9 @@
 static void default_linestyle_settings(FreestyleLineStyle *linestyle)
 {
 	linestyle->panel = LS_PANEL_STROKES;
-	linestyle->r = linestyle->g = linestyle->b = 1.0f;
+	linestyle->r = linestyle->g = linestyle->b = 0.0f;
 	linestyle->alpha = 1.0f;
-	linestyle->thickness = 1.0f;
+	linestyle->thickness = 3.0f;
 	linestyle->thickness_position = LS_THICKNESS_CENTER;
 	linestyle->thickness_ratio = 0.5f;
 	linestyle->chaining = LS_CHAINING_PLAIN;




More information about the Bf-blender-cvs mailing list