예제 #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)
예제 #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)
예제 #3
0
파일: path.py 프로젝트: lisarosalina/App
 def intersects_path(self, other):
     """
     Returns *True* if this path intersects another given path.
     """
     return path_intersects_path(self, other)
예제 #4
0
 def intersects_path(self, other):
     """
     Returns *True* if this path intersects another given path.
     """
     return path_intersects_path(self, other)