Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-30 20:42:59 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-30 20:42:59 +0400
commit7072f234d3f8c90fb1402847ba132b3574a2c823 (patch)
tree219fa6e7b9a0e6efc7bfc7eb3bfdcb3b66a39231 /source
parentf13829c7826e61c14d78f20bd347228f01367706 (diff)
Updated default line style parameters.
- Line color set to black. - Line thickness set to 3. Based on review comments by IRIE Shinsuke.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/linestyle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/linestyle.c b/source/blender/blenkernel/intern/linestyle.c
index fe27ddcfafe..6a8061274f8 100644
--- a/source/blender/blenkernel/intern/linestyle.c
+++ b/source/blender/blenkernel/intern/linestyle.c
@@ -76,9 +76,9 @@ static const char *modifier_name[LS_MODIFIER_NUM] = {
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;