2023-10-16 12:29:08 -03:00
|
|
|
#import <Geometry/DOMPointReadOnly.idl>
|
|
|
|
|
|
2022-08-11 12:10:04 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/canvas.html#canvaspath
|
|
|
|
|
interface mixin CanvasPath {
|
|
|
|
|
undefined closePath();
|
|
|
|
|
undefined moveTo(unrestricted double x, unrestricted double y);
|
|
|
|
|
undefined lineTo(unrestricted double x, unrestricted double y);
|
|
|
|
|
undefined quadraticCurveTo(unrestricted double cpx, unrestricted double cpy, unrestricted double x, unrestricted double y);
|
|
|
|
|
undefined bezierCurveTo(unrestricted double cp1x, unrestricted double cp1y, unrestricted double cp2x, unrestricted double cp2y, unrestricted double x, unrestricted double y);
|
2023-09-17 09:15:21 -03:00
|
|
|
undefined arcTo(unrestricted double x1, unrestricted double y1, unrestricted double x2, unrestricted double y2, unrestricted double radius);
|
2023-10-04 10:26:27 -03:00
|
|
|
undefined rect(unrestricted double x, unrestricted double y, unrestricted double w, unrestricted double h);
|
2023-10-16 12:29:08 -03:00
|
|
|
undefined roundRect(unrestricted double x, unrestricted double y, unrestricted double w, unrestricted double h, optional (unrestricted double or DOMPointInit or sequence<(unrestricted double or DOMPointInit)>) radii = 0);
|
2022-08-11 12:10:04 -03:00
|
|
|
undefined arc(unrestricted double x, unrestricted double y, unrestricted double radius, unrestricted double startAngle, unrestricted double endAngle, optional boolean counterclockwise = false);
|
|
|
|
|
undefined ellipse(unrestricted double x, unrestricted double y, unrestricted double radiusX, unrestricted double radiusY, unrestricted double rotation, unrestricted double startAngle, unrestricted double endAngle, optional boolean counterclockwise = false);
|
|
|
|
|
};
|