Donner
C++20 SVG rendering library
Loading...
Searching...
No Matches
donner::svg::parser::CssTransformParser Class Reference

Parse a CSS "transform" property. More...

#include "donner/svg/parser/CssTransformParser.h"

Static Public Member Functions

static ParseResult< CssTransformParse (std::span< const css::ComponentValue > components)
 Parse a CSS "transform" property.
 

Detailed Description

Parse a CSS "transform" property.

See also
https://www.w3.org/TR/css-transforms-1/#transform-property

Member Function Documentation

◆ Parse()

ParseResult< CssTransform > donner::svg::parser::CssTransformParser::Parse ( std::span< const css::ComponentValue > components)
static

Parse a CSS "transform" property.

See also
https://www.w3.org/TR/css-transforms-1/#transform-property

Compared to the SVG transform="..." attribute, TransformParser, this parser supports the full CSS syntax including units on lengths and angles.

Supported functions:

Function Description
matrix(a, b, c, d, e, f) Applies a matrix transform defined by six numeric parameters.
translate(x, y=0) Translates by (x, y). The values can include units (e.g. px, %, etc).
translateX(x) Translates along the X-axis by x.
translateY(y) Translates along the Y-axis by y.
scale(x, y=x) Scales by (x, y). If y is omitted, the scale is uniform in both dimensions.
scaleX(x) Scales along the X-axis by x.
scaleY(y) Scales along the Y-axis by y.
rotate(angle) Rotates by angle. The angle may include units (e.g. deg, rad).
skew(angle, theta=0) Applies a skew transform with two angles. This function is deprecated in favor of skewX/skewY.
skewX(angle) Skews along the X-axis by angle.
skewY(angle) Skews along the Y-axis by angle.

In functions that accept multiple parameters, commas are required to separate the values.

Parameters
componentsCSS ComponentValues for a parsed transform property.
Returns
Parsed CSS transform, or an error.

The documentation for this class was generated from the following files: