Updated default line style parameters.

- Line color set to black.
- Line thickness set to 3.
Based on review comments by IRIE Shinsuke.
This commit is contained in:
Tamito Kajiyama 2013-03-30 16:42:59 +00:00
parent f13829c782
commit 7072f234d3
2 changed files with 2 additions and 2 deletions

Binary file not shown.

@ -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;