mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 14:02:51 +00:00
LibWeb/SVG: Stub SVGTransform.setRotate
This commit is contained in:
parent
effb696eef
commit
0bac2d5fbd
Notes:
sideshowbarker
2024-07-17 06:35:23 +09:00
Author: https://github.com/jamierocks
Commit: 0bac2d5fbd
Pull-request: https://github.com/SerenityOS/serenity/pull/24231
Reviewed-by: https://github.com/MacDue ✅
3 changed files with 11 additions and 1 deletions
|
@ -59,4 +59,13 @@ void SVGTransform::set_scale(float sx, float sy)
|
|||
dbgln("FIXME: Implement SVGTransform::set_scale(float sx, float sy)");
|
||||
}
|
||||
|
||||
// https://svgwg.org/svg2-draft/single-page.html#coords-__svg__SVGTransform__setRotate
|
||||
void SVGTransform::set_rotate(float angle, float cx, float cy)
|
||||
{
|
||||
(void)angle;
|
||||
(void)cx;
|
||||
(void)cy;
|
||||
dbgln("FIXME: Implement SVGTransform::set_rotate(float angle, float cx, float cy)");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue