mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +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
 | 
