We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2aa81 commit 5dccb2bCopy full SHA for 5dccb2b
README.md
@@ -164,7 +164,9 @@ function setup() {
164
}
165
function draw() {
166
translate(width/2, height/2);
167
- // Draw the curved star shape
+
168
+ // Draw the curved star shape - use one of the snippets below, depending on p5.js version
169
170
describe("A white star on a gray background in the middle of the canvas")
171
172
```
@@ -216,7 +218,7 @@ bezierVertex(0, 50);
216
218
bezierVertex(0, 100);
217
219
220
// Bottom-left curve.
-bezierVertex( 0, 50);
221
+bezierVertex(0, 50);
222
bezierVertex(-50, 0);
223
bezierVertex(-100, 0);
224
0 commit comments