From f612ae5f9894b870d9e860329ce3a1361278b5d2 Mon Sep 17 00:00:00 2001 From: Daniel Dahl <50756864+dansmindspace@users.noreply.github.com> Date: Mon, 25 Sep 2023 20:42:02 -0600 Subject: [PATCH 1/2] Update sketch.js Added noLoop() to draw(). --- sketch.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sketch.js b/sketch.js index c20d009..c90d30a 100644 --- a/sketch.js +++ b/sketch.js @@ -44,4 +44,7 @@ function draw() { line(56.632, 44.613, 56.632, 53.135); line(68.005, 59.075, 55.308, 59.075); + + //Added since sketch does not need to be looped. + noLoop(); } From 0ee37e927fca72158b763de025d42cb9e04972cd Mon Sep 17 00:00:00 2001 From: Daniel Dahl <50756864+dansmindspace@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:58:05 -0600 Subject: [PATCH 2/2] Added Animation Comment --- sketch.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sketch.js b/sketch.js index eae8b15..b81ce93 100644 --- a/sketch.js +++ b/sketch.js @@ -41,6 +41,7 @@ function draw() { line(227, 178, 227, 213); line(272, 236, 221, 236); - + + //Remove to allow Animation noLoop(); }