FillNode#
Added in version 4.14.
- class FillNode(*args, **kwargs)#
Superclasses: RenderNode
A render node filling the area given by Path
and FillRule
with the child node.
Constructors#
- class FillNode
- classmethod new(child: RenderNode, path: Path, fill_rule: FillRule) FillNode #
Creates a
GskRenderNode
that will fill thechild
in the area given bypath
andfill_rule
.Added in version 4.14.
- Parameters:
child – The node to fill the area with
path – The path describing the area to fill
fill_rule – The fill rule to use
Methods#
- class FillNode
- get_child() RenderNode #
Gets the child node that is getting drawn by the given
node
.Added in version 4.14.