From 65d3eee8371fdbc6a2e303f0f8eec3834fe18afc Mon Sep 17 00:00:00 2001 From: Andrea Bianchi Date: Tue, 10 Mar 2026 18:18:44 +0900 Subject: [PATCH] Adding w2.2 --- w2_2_p5js/index.html | 16 ++++++++++++++++ w2_2_p5js/sketch.js | 9 +++++++++ 2 files changed, 25 insertions(+) create mode 100644 w2_2_p5js/index.html create mode 100644 w2_2_p5js/sketch.js diff --git a/w2_2_p5js/index.html b/w2_2_p5js/index.html new file mode 100644 index 0000000..ec981ee --- /dev/null +++ b/w2_2_p5js/index.html @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/w2_2_p5js/sketch.js b/w2_2_p5js/sketch.js new file mode 100644 index 0000000..4e7c82b --- /dev/null +++ b/w2_2_p5js/sketch.js @@ -0,0 +1,9 @@ +// Single-sketch example + +function setup() { + createCanvas(800, 600); +} + +function draw() { + background(120); +}