(...args)
| 350 | } |
| 351 | |
| 352 | stroke(...args) { |
| 353 | if (args.length === 0) { |
| 354 | return this.states.strokeColor; |
| 355 | } |
| 356 | this.states.setValue('strokeSet', true); |
| 357 | this.states.setValue('strokeColor', this._pInst.color(...args)); |
| 358 | this.updateShapeVertexProperties(); |
| 359 | } |
| 360 | |
| 361 | noStroke() { |
| 362 | this.states.setValue('strokeColor', null); |
no test coverage detected