mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb/SVG: Stub SVGTransform.setRotate
This commit is contained in:
committed by
Andrew Kaster
parent
effb696eef
commit
0bac2d5fbd
Notes:
sideshowbarker
2024-07-17 06:35:23 +09:00
Author: https://github.com/jamierocks Commit: https://github.com/SerenityOS/serenity/commit/0bac2d5fbd Pull-request: https://github.com/SerenityOS/serenity/pull/24231 Reviewed-by: https://github.com/MacDue ✅
@@ -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)");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user