()
| 59 | } |
| 60 | |
| 61 | function clip() { |
| 62 | poco.fillRectangle(gray, 0, 0, poco.width, poco.height); |
| 63 | |
| 64 | poco.clip(20, 20, poco.width - 40, poco.height - 40); |
| 65 | poco.fillRectangle(green, 0, 0, poco.width, poco.height); |
| 66 | |
| 67 | poco.clip(0, 0, 40, 40); |
| 68 | poco.fillRectangle(blue, 0, 0, poco.width, poco.height); |
| 69 | |
| 70 | poco.fillRectangle(white, 26, 0, 2, poco.height); |
| 71 | |
| 72 | poco.clip(); |
| 73 | poco.fillRectangle(red, 30, 0, 2, poco.height); |
| 74 | |
| 75 | poco.clip(); |
| 76 | poco.fillRectangle(black, 34, 0, 2, poco.height); |
| 77 | } |
| 78 | |
| 79 | function monochrome() { |
| 80 | poco.fillRectangle(gray, 0, 0, poco.width, poco.height); |
nothing calls this directly
no test coverage detected