mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibWeb/SVG: Stub SVGTransform.setTranslate
This commit is contained in:
parent
c102630a59
commit
5d5f043631
Notes:
sideshowbarker
2024-07-16 19:42:24 +09:00
Author: https://github.com/jamierocks
Commit: 5d5f043631
Pull-request: https://github.com/SerenityOS/serenity/pull/24231
Reviewed-by: https://github.com/MacDue ✅
3 changed files with 11 additions and 1 deletions
|
@ -43,4 +43,12 @@ float SVGTransform::angle()
|
|||
return 0;
|
||||
}
|
||||
|
||||
// https://svgwg.org/svg2-draft/single-page.html#coords-__svg__SVGTransform__setTranslate
|
||||
void SVGTransform::set_translate(float tx, float ty)
|
||||
{
|
||||
(void)tx;
|
||||
(void)ty;
|
||||
dbgln("FIXME: Implement SVGTransform::set_translate(float tx, float ty)");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue