type OptionalRotateList = Option<CommaSeparatedList<f64, 1, 4096>>;Expand description
Type for the rotate attribute of the <text> and <tspan> elements
https://svgwg.org/svg2-draft/text.html#TSpanAttributes
See OptionalLengthList for a description of the structure of the type.
Aliased Type§
enum OptionalRotateList {
None,
Some(CommaSeparatedList<f64, 1, 4096>),
}