mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Canvas: implement quadraticCurveTo().
This commit is contained in:
parent
7bd6cb0091
commit
2817f2e066
7 changed files with 19 additions and 13 deletions
|
@ -124,7 +124,7 @@ interface CanvasPathMethods {
|
|||
void closePath();
|
||||
void moveTo(/*unrestricted*/ double x, /*unrestricted*/ double y);
|
||||
void lineTo(double x, double y);
|
||||
//void quadraticCurveTo(double cpx, double cpy, double x, double y);
|
||||
void quadraticCurveTo(double cpx, double cpy, double x, double y);
|
||||
|
||||
void bezierCurveTo(/*unrestricted*/ double cp1x,
|
||||
/*unrestricted*/ double cp1y,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue