mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb/SVG: Stub SVGTransform.setScale
This commit is contained in:
committed by
Andrew Kaster
parent
5d5f043631
commit
effb696eef
@@ -51,4 +51,12 @@ void SVGTransform::set_translate(float tx, float ty)
|
||||
dbgln("FIXME: Implement SVGTransform::set_translate(float tx, float ty)");
|
||||
}
|
||||
|
||||
// https://svgwg.org/svg2-draft/single-page.html#coords-__svg__SVGTransform__setScale
|
||||
void SVGTransform::set_scale(float sx, float sy)
|
||||
{
|
||||
(void)sx;
|
||||
(void)sy;
|
||||
dbgln("FIXME: Implement SVGTransform::set_scale(float sx, float sy)");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user