summaryrefslogtreecommitdiffstats
path: root/share/extensions/inkex/elements/__init__.py
blob: 021d47bbd039f445c163aef64e5477e0838963f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
Element based interface provides the bulk of features that allow you to
interact directly with the SVG xml interface.

See the documentation for each of the elements for details on how it works.
"""

from ._utils import addNS, NSS
from ._parser import SVG_PARSER, load_svg
from ._base import ShapeElement, BaseElement
from ._svg import SvgDocumentElement
from ._groups import Group, Layer, Anchor, Marker, ClipPath, Mask
from ._polygons import PathElement, Polyline, Polygon, Line, Rectangle, Circle, Ellipse
from ._text import (
    FlowRegion,
    FlowRoot,
    FlowPara,
    FlowDiv,
    FlowSpan,
    TextElement,
    TextPath,
    Tspan,
    SVGfont,
    FontFace,
    Glyph,
    MissingGlyph,
)
from ._use import Symbol, Use
from ._meta import (
    Defs,
    StyleElement,
    Script,
    Desc,
    Title,
    NamedView,
    Guide,
    Metadata,
    ForeignObject,
    Switch,
    Grid,
    Page,
)
from ._filters import (
    Filter,
    Pattern,
    Gradient,
    LinearGradient,
    RadialGradient,
    PathEffect,
    Stop,
    MeshGradient,
    MeshRow,
    MeshPatch,
)
from ._image import Image