mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +00:00
LibWeb: Add CanvasRenderingContext2D.bezierCurveTo()
This commit is contained in:
parent
34f6c88ffd
commit
90a8744823
Notes:
sideshowbarker
2024-07-17 19:50:27 +09:00
Author: https://github.com/awesomekling
Commit: 90a8744823
3 changed files with 9 additions and 2 deletions
|
@ -15,6 +15,7 @@ interface CanvasRenderingContext2D {
|
|||
undefined moveTo(double x, double y);
|
||||
undefined lineTo(double x, double y);
|
||||
undefined quadraticCurveTo(double cpx, double cpy, double x, double y);
|
||||
undefined bezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y);
|
||||
|
||||
undefined arc(double x, double y, double radius, double startAngle, double endAngle, optional boolean counterclockwise = false);
|
||||
undefined ellipse(double x, double y, double radiusX, double radiusY, double rotation, double startAngle, double endAngle, optional boolean counterclockwise = false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue