SetLineWidth sets the width of stroked paths. If the width is not positive then stroked lines are not drawn.
(w Length)
| 27 | // If the width is not positive then stroked lines |
| 28 | // are not drawn. |
| 29 | func (tee teeCanvas) SetLineWidth(w Length) { |
| 30 | for _, c := range tee.cs { |
| 31 | c.SetLineWidth(w) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | // SetLineDash sets the dash pattern for lines. |
| 36 | // The pattern slice specifies the lengths of |
nothing calls this directly
no test coverage detected