clip method

clip

Creates a new clipping region by calculating the intersection of the current clipping region and the area described by the path, using the non-zero winding number rule. Open subpaths must be implicitly closed when computing the clipping region, without affecting the actual subpaths. The new clipping region replaces the current clipping region.

def clip(self):
    ...

clip

Creates a new clipping region by calculating the intersection of the current clipping region and the area described by the path, using the non-zero winding number rule. Open subpaths must be implicitly closed when computing the clipping region, without affecting the actual subpaths. The new clipping region replaces the current clipping region.

def clip(self, fill_rule):
    ...
ParameterTypeDescription
fill_ruleCanvasFillRuleThe algorithm by which to determine if a point is inside a path or outside a path

clip

Creates a new clipping region by calculating the intersection of the current clipping region and the area described by the path, using the non-zero winding number rule. Open subpaths must be implicitly closed when computing the clipping region, without affecting the actual subpaths. The new clipping region replaces the current clipping region.

def clip(self, path, fill_rule):
    ...
ParameterTypeDescription
pathPath2DA Path2D path to clip.
fill_ruleCanvasFillRuleThe algorithm by which to determine if a point is inside a path or outside a path.

See Also