Added link to README

This commit is contained in:
Andrea Bianchi 2025-03-04 20:29:39 +09:00
parent 0312cc9194
commit 611e23d702

View File

@ -42,7 +42,7 @@ The parameters `x, y, width` and `height` are the same as for the functions to d
<img src="assets/usa.jpg" height="300" />
</p>
- You can use any drawing function in p5.js, **except those under Transform in the reference page** (_rotate_, _translate_, _scale_, etc... you cannot use those). You can create your functions if you want. Here is a tip: for drawing the stars, take a look at the **beginShape**, **vertex**, and **endShape** functions.
- You can use any drawing function in the p5.js [reference](https://p5js.org/reference), **except those under Transform in the reference page** (_rotate_, _translate_, _scale_, etc... you cannot use those). You can create your functions if you want. Here is a tip: for drawing the stars, take a look at the **beginShape**, **vertex**, and **endShape** functions.
## How to perform rotations?