pub struct Pattern {
pub id: String,
pub units: Units,
pub content_units: Units,
pub transform: Transform,
pub rect: Rect,
pub view_box: Option<ViewBox>,
pub root: Node,
}Expand description
A pattern element.
pattern element in SVG.
Fields§
§id: StringElement’s ID.
Taken from the SVG itself. Can’t be empty.
units: UnitsCoordinate system units.
patternUnits in SVG.
content_units: UnitsContent coordinate system units.
patternContentUnits in SVG.
transform: TransformPattern transform.
patternTransform in SVG.
rect: RectPattern rectangle.
x, y, width and height in SVG.
view_box: Option<ViewBox>Pattern viewbox.
root: NodePattern children.
The root node is always Group.