Path2D Class

Path2D class

The Path2D interface of the Canvas 2D API is used to declare paths that are then later used on CanvasRenderingContext2D objects. The path methods of the CanvasRenderingContext2D interface are present on this interface as well and are allowing you to create paths that you can retain and replay as required on a canvas.

public class Path2D : DOMObject, ICanvasPathMethods, IDisposable

Constructors

NameDescription
Path2D()returns a newly instantiated Path2D object
Path2D(Path2D)returns a newly instantiated Path2D object with another path as an argument (creates a copy)
Path2D(String)returns a newly instantiated Path2D object with a String consisting of SVG path data.

Methods

NameDescription
addPath(Path2D)Adds to the path the path given by the argument.
addPath(Path2D, SVGMatrix)Adds to the path the path given by the argument.
arc(double, double, double, double, double)Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at endAngle going in the given direction by anticlockwise (defaulting to clockwise).
arc(double, double, double, double, double, bool)Adds an arc to the path which is centered at (x, y) position with radius r starting at startAngle and ending at endAngle going in the given direction by anticlockwise (defaulting to clockwise).
arcTo(double, double, double, double, double)Adds an arc to the path with the given control points and radius, connected to the previous point by a straight line.
bezierCurveTo(double, double, double, double, double, double)Adds a cubic Bézier curve to the path. It requires three points. The first two points are control points and the third one is the end point. The starting point is the last point in the current path, which can be changed using moveTo() before creating the Bézier curve.
closePath()Causes the point of the pen to move back to the start of the current sub-path. It tries to draw a straight line from the current point to the start. If the shape has already been closed or has only one point, this function does nothing.
dispose()Disposes object.
ellipse(double, double, double, double, double, double, double)Adds an ellipse to the path which is centered at (x, y) position with the radii radiusX and radiusY starting at startAngle and ending at endAngle going in the given direction by anticlockwise (defaulting to clockwise).
ellipse(double, double, double, double, double, double, double, bool)Adds an ellipse to the path which is centered at (x, y) position with the radii radiusX and radiusY starting at startAngle and ending at endAngle going in the given direction by anticlockwise (defaulting to clockwise).
getPlatformType()This method is used to retrieve the ECMAScript object .
lineTo(double, double)Connects the last point in the subpath to the x, y coordinates with a straight line.
moveTo(double, double)Moves the starting point of a new sub-path to the (x, y) coordinates.
quadraticCurveTo(double, double, double, double)Adds a quadratic Bézier curve to the current path.
rect(double, double, double, double)Creates a path for a rectangle at position (x, y) with a size that is determined by width and height.

See Also