setup()
Initializes the canvas
Example

def setup():
background("grey")
def draw():
fill(255,79,132)
circle(mouseX,mouseY,100)Syntax
Description
Last updated
Initializes the canvas

def setup():
background("grey")
def draw():
fill(255,79,132)
circle(mouseX,mouseY,100)Last updated