Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Javiai
/
Cuentos_Graficos
like
0
Runtime error
App
Files
Files
Community
70dd424
Cuentos_Graficos
/
sketch.js
Javiai
try
cc3741b
11 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
// PARAMS are embedded here
function
setup
(
) {
createCanvas
(
WIDTH
,
HEIGHT
);
}
function
draw
(
) {
background
(
BACKGROUND_COLOR
);
circle
(mouseX, mouseY,
CIRCLE_SIZE
);
}