Notes Contents Setting up environment¶ Introduction¶ Set up coding environment or web editor Use the p5.js reference Basics of P5JS¶ function setup() { createCanvas(400, 400); } function draw() { background("grey"); } function CircleCreation() { circle(200,200,100) } Was this page helpful? Thanks for your feedback!