(x, y, width, height)
| 666 | } |
| 667 | } |
| 668 | begin(x, y, width, height) { |
| 669 | if (undefined === x) |
| 670 | x = 0; |
| 671 | if (undefined === y) |
| 672 | y = 0; |
| 673 | if (undefined === width) |
| 674 | width = this.width - x; |
| 675 | if (undefined === height) |
| 676 | height = this.height - y; |
| 677 | this.#firmata.doPocoBegin(x, y, width, height); |
| 678 | } |
| 679 | end() { |
| 680 | this.#firmata.doPocoEnd(); |
| 681 | } |
no test coverage detected