(r, g, b, a)
| 675 | return _ctx.state.fill; |
| 676 | } |
| 677 | function stroke(r, g, b, a) { |
| 678 | /* Sets the current stroke color. |
| 679 | */ |
| 680 | if (r !== undefined) { |
| 681 | _ctx.state.stroke = (r instanceof Color)? r.copy() : new Color(r, g, b, a); |
| 682 | } |
| 683 | return _ctx.state.stroke; |
| 684 | } |
| 685 | |
| 686 | function nofill() { |
| 687 | /* No current fill color. |
nothing calls this directly
no test coverage detected
searching dependent graphs…