()
| 30 | let blue = poco.makeColor(0, 0, 255); |
| 31 | |
| 32 | function fillRectangle() { |
| 33 | poco.fillRectangle(gray, 0, 0, poco.width, poco.height); |
| 34 | poco.fillRectangle(red, 0, 0, poco.width / 2, poco.height); |
| 35 | poco.blendRectangle(blue, 128, poco.width / 4, |
| 36 | 0, poco.width / 2, poco.height); |
| 37 | } |
| 38 | |
| 39 | function origin() { |
| 40 | poco.fillRectangle(gray, 0, 0, poco.width, poco.height); |
nothing calls this directly
no test coverage detected