๐ฐpath
A path is a sequence of one or more subpaths. A subpath is a sequence of two or more points connected by lines or curves.
.beginPath() - begin a new path.
.moveTo() - begin a new subpath.
.closePath() - add line to start of current subpath.
remember to call beginPath() when you want to begin another new pathโ๏ธ
Before rect(x, y, width, height) is executed, the .moveTo() method is automatically called with the parameters (x,y)
.
Last updated
Was this helpful?