beginPath method

Resets the current path.

 

Syntax

object.beginPath();

Parameters

This method has no parameters.

Return value

This method does not return a value.

Standards information

Remarks

A path consists of a list of zero or more subpaths. Each subpath is a list of one or more points that are connected by straight or curved lines. Each subpath also contains a flag that indicates whether the subpath is closed. If a subpath is closed, the last point of the subpath is connected to the first point by a straight line. Subpaths that have fewer than two points are ignored when the path is painted.