This commit is contained in:
Will Charczuk 2016-07-07 17:50:16 -07:00
parent 04bef9cad8
commit b10ead7cc1
4 changed files with 56 additions and 62 deletions

View file

@ -24,7 +24,7 @@ func (s Style) GetStrokeColor(defaults ...color.RGBA) color.RGBA {
if len(defaults) > 0 {
return defaults[0]
}
return DefaultLineColor
return DefaultStrokeColor
}
return s.StrokeColor
}
@ -46,7 +46,7 @@ func (s Style) GetStrokeWidth(defaults ...float64) float64 {
if len(defaults) > 0 {
return defaults[0]
}
return DefaultLineWidth
return DefaultStrokeWidth
}
return s.StrokeWidth
}