๐ฐpath
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
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.
- add line to start of current subpath.
and operate on all subpaths in the current path.
remember to call when you want to begin another new pathโ๏ธ
Before is executed, the method is automatically called with the parameters (x,y)
.