Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: mouseWheel example fixed while drawing the circle
  • Loading branch information
swastikCommits committed Mar 9, 2025
commit 44728d346459be17a0bbb15f0893a0230d2f6114
2 changes: 1 addition & 1 deletion src/events/mouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down