beginPath method
void
beginPath()
The
CanvasRenderingContext2D.beginPath()
method of the Canvas 2D API starts a new path by emptying the list of
sub-paths. Call
this method when you want to create a new path.
Note: To create a new sub-path, i.e., one matching the current canvas state, you can use CanvasRenderingContext2D.moveTo.
Implementation
external void beginPath();