mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
18 lines
308 B
C++
18 lines
308 B
C++
#include "graphicselement.h"
|
|
#include "parser.h"
|
|
|
|
namespace lunasvg {
|
|
|
|
GraphicsElement::GraphicsElement(ElementID id)
|
|
: StyledElement(id)
|
|
{
|
|
}
|
|
|
|
Transform GraphicsElement::transform() const
|
|
{
|
|
auto& value = get(PropertyID::Transform);
|
|
return Parser::parseTransform(value);
|
|
}
|
|
|
|
} // namespace lunasvg
|