Skip to content

Commit

Permalink
Merge pull request #7311 from shourysingh07/issue_583
Browse files Browse the repository at this point in the history
mouseY reference first example issue fixed
  • Loading branch information
davepagurek authored Oct 23, 2024
2 parents 03b9517 + 3bb2222 commit 711869b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/mouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ p5.prototype.mouseX = 0;
* background(200);
*
* // Draw a horizontal line that follows the mouse's y-coordinate.
* line(0, mouseY, 0, mouseY);
* line(0, mouseY, 100, mouseY);
* }
* </code>
* </div>
Expand Down

0 comments on commit 711869b

Please sign in to comment.