LibWeb/SVG: Stub SVGTransform.setRotate

This commit is contained in:
Jamie Mansfield 2024-05-06 12:21:54 +01:00 committed by Andrew Kaster
parent effb696eef
commit 0bac2d5fbd
Notes: sideshowbarker 2024-07-17 06:35:23 +09:00
3 changed files with 11 additions and 1 deletions

View file

@ -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)");
}
}