✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.36
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/cloudlinux/venv/lib/python3.11/site-packages/svgwrite//pattern.py
#!/usr/bin/env python
#coding:utf-8
# Author:  mozman --<mozman@gmx.at>
# Purpose: pattern module
# Created: 29.10.2010
# Copyright (C) 2010, Manfred Moitzi
# License: MIT License

from svgwrite.base import BaseElement
from svgwrite.mixins import XLink, ViewBox, Transform, Presentation
from svgwrite.utils import is_string

class Pattern(BaseElement, XLink, ViewBox, Transform, Presentation):
    """
    A pattern is used to fill or stroke an object using a pre-defined graphic
    object which can be replicated ("tiled") at fixed intervals in x and y to
    cover the areas to be painted. Patterns are defined using a `pattern` element
    and then referenced by properties `fill` and `stroke` on a given graphics
    element to indicate that the given element shall be filled or stroked with
    the referenced pattern.
    """
    elementname = 'pattern'
    transformname = 'patternTransform'

    def __init__(self, insert=None, size=None, inherit=None, **extra):
        """
        :param 2-tuple insert: base point of the pattern (**x**, **y**)
        :param 2-tuple size: size of the pattern (**width**, **height**)
        :param inherit: pattern inherits properties from `inherit` see: **xlink:href**

        """
        super(Pattern, self).__init__(**extra)
        if insert is not None:
            self['x'] = insert[0]
            self['y'] = insert[1]
        if size is not None:
            self['width'] = size[0]
            self['height'] = size[1]
        if inherit is not None:
            if is_string(inherit):
                self.set_href(inherit)
            else:
                self.set_href(inherit.get_iri())

        if self.debug:
            self.validator.check_all_svg_attribute_values(self.elementname, self.attribs)

    def get_paint_server(self, default='none'):
        """ Returns the <FuncIRI> of the gradient. """
        return "%s %s" % (self.get_funciri(), default)


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
25 Jun 2026 5.03 AM
root / root
0755
__pycache__
--
11 Feb 2026 6.01 AM
root / root
0755
data
--
11 Feb 2026 6.01 AM
root / root
0755
extensions
--
11 Feb 2026 6.01 AM
root / root
0755
__init__.py
2.447 KB
20 Jan 2026 1.01 PM
root / root
0644
animate.py
6.507 KB
20 Jan 2026 1.01 PM
root / root
0644
base.py
8.422 KB
20 Jan 2026 1.01 PM
root / root
0644
container.py
10.489 KB
20 Jan 2026 1.01 PM
root / root
0644
drawing.py
5.167 KB
20 Jan 2026 1.01 PM
root / root
0644
elementfactory.py
2.243 KB
20 Jan 2026 1.01 PM
root / root
0644
etree.py
1.329 KB
20 Jan 2026 1.01 PM
root / root
0644
filters.py
7.814 KB
20 Jan 2026 1.01 PM
root / root
0644
gradients.py
4.592 KB
20 Jan 2026 1.01 PM
root / root
0644
image.py
2.435 KB
20 Jan 2026 1.01 PM
root / root
0644
masking.py
1.813 KB
20 Jan 2026 1.01 PM
root / root
0644
mixins.py
10.497 KB
20 Jan 2026 1.01 PM
root / root
0644
params.py
1.858 KB
20 Jan 2026 1.01 PM
root / root
0644
path.py
2.781 KB
20 Jan 2026 1.01 PM
root / root
0644
pattern.py
1.927 KB
20 Jan 2026 1.01 PM
root / root
0644
shapes.py
5.186 KB
20 Jan 2026 1.01 PM
root / root
0644
solidcolor.py
1.693 KB
20 Jan 2026 1.01 PM
root / root
0644
text.py
7.947 KB
20 Jan 2026 1.01 PM
root / root
0644
utils.py
7.247 KB
20 Jan 2026 1.01 PM
root / root
0644
validator2.py
6.06 KB
20 Jan 2026 1.01 PM
root / root
0644
version.py
1.093 KB
20 Jan 2026 1.01 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF