:right-sidebar: True RepeatingRadialGradientNode =================================================================== .. currentmodule:: gi.repository.Gsk .. class:: RepeatingRadialGradientNode(*args, **kwargs) :no-contents-entry: Superclasses: :class:`~gi.repository.Gsk.RenderNode` A render node for a repeating radial gradient. Constructors ------------ .. rst-class:: interim-class .. class:: RepeatingRadialGradientNode :no-index: .. classmethod:: new(bounds: ~gi.repository.Graphene.Rect, center: ~gi.repository.Graphene.Point, hradius: float, vradius: float, start: float, end: float, color_stops: list[~gi.repository.Gsk.ColorStop]) -> ~gi.repository.Gsk.RepeatingRadialGradientNode Creates a ``GskRenderNode`` that draws a repeating radial gradient. The radial gradient starts around ``center``\. The size of the gradient is dictated by ``hradius`` in horizontal orientation and by ``vradius`` in vertical orientation. :param bounds: the bounds of the node :param center: the center of the gradient :param hradius: the horizontal radius :param vradius: the vertical radius :param start: a percentage >= 0 that defines the start of the gradient around ``center`` :param end: a percentage >= 0 that defines the end of the gradient around ``center`` :param color_stops: a pointer to an array of ``GskColorStop`` defining the gradient. The offsets of all color stops must be increasing. The first stop's offset must be >= 0 and the last stop's offset must be <= 1.