mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 10:36:02 +00:00
LibWeb: Add CanvasRenderingContext2D.rotate()
This is pretty limited since we don't have wholesale mapping through the context transform, but we have to start somewhere. :^)
This commit is contained in:
parent
dc22e59a1a
commit
9d8565cf9a
Notes:
sideshowbarker
2024-07-19 05:22:03 +09:00
Author: https://github.com/awesomekling
Commit: 9d8565cf9a
5 changed files with 21 additions and 0 deletions
|
@ -5,6 +5,7 @@ interface CanvasRenderingContext2D {
|
|||
|
||||
void scale(double x, double y);
|
||||
void translate(double x, double y);
|
||||
void rotate(double radians);
|
||||
|
||||
void beginPath();
|
||||
void closePath();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue