(x, y, width, height)
| 680 | this.#firmata.doPocoEnd(); |
| 681 | } |
| 682 | clip(x, y, width, height) { |
| 683 | if (undefined === x) |
| 684 | this.#firmata.doPocoClip(); |
| 685 | else |
| 686 | this.#firmata.doPocoClip(x, y, width, height); |
| 687 | } |
| 688 | origin(x, y) { |
| 689 | if (undefined === x) |
| 690 | this.#firmata.doPocoOrigin(); |
nothing calls this directly
no test coverage detected