From 44728d346459be17a0bbb15f0893a0230d2f6114 Mon Sep 17 00:00:00 2001 From: swastikCommits Date: Sun, 9 Mar 2025 07:18:47 +0530 Subject: [PATCH] fix: mouseWheel example fixed while drawing the circle --- src/events/mouse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/mouse.js b/src/events/mouse.js index c36bdf4ffc..0f3985a2db 100644 --- a/src/events/mouse.js +++ b/src/events/mouse.js @@ -1802,7 +1802,7 @@ p5.prototype._pmouseWheelDeltaY = 0; * background(200); * * // Draw the circle - * circle(circleSize, 50, 50); + * circle(50, 50, circleSize); * } * * // Increment circleSize when the user scrolls the mouse wheel.