Exemplo n.º 1
0
 def intersects_path(self, other, filled=True):
     """
     Returns *True* if this path intersects another given path.
     *filled*, when True, treats the paths as if they were filled.
     That is, if one path completely encloses the other,
     :meth:`intersects_path` will return True.
     """
     return path_intersects_path(self, other, filled)
Exemplo n.º 2
0
    def intersects_path(self, other, filled=True):
        """
        Returns *True* if this path intersects another given path.

        *filled*, when True, treats the paths as if they were filled.
        That is, if one path completely encloses the other,
        :meth:`intersects_path` will return True.
        """
        return _path.path_intersects_path(self, other, filled)
Exemplo n.º 3
0
 def intersects_path(self, other):
     """
     Returns *True* if this path intersects another given path.
     """
     return path_intersects_path(self, other)
Exemplo n.º 4
0
 def intersects_path(self, other):
     """
     Returns *True* if this path intersects another given path.
     """
     return path_intersects_path(self, other)