MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / clip

Function clip

examples/commodetto/docs/main.js:61–77  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59}
60
61function 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
79function monochrome() {
80 poco.fillRectangle(gray, 0, 0, poco.width, poco.height);

Callers

nothing calls this directly

Calls 2

fillRectangleMethod · 0.65
clipMethod · 0.65

Tested by

no test coverage detected