Skip to content

Commit

Permalink
cleanup #22
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarisland committed Feb 9, 2024
1 parent 6366469 commit 44abc25
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -25,7 +25,7 @@ def hatchLayerWithOrigin(self, layer, theta, enableHatchStroke, hatchStroke, hat
shapesLength = len(layer.shapes)
hatchStart = int(hatchStroke[0])
hatchEnd = int(hatchStroke[1])
i = 0;
i = 0
shapes = []
if enableHatchStroke:
for myShape in layer.shapes:
Expand Down Expand Up @@ -72,6 +72,7 @@ def intersectShapes(self, layer, originalShapes):
layer.shapes = intersectedShapes
return layer

@objc.python_method
def intersect(self, shapeTwo, shapeOne):
GSPathOperator = NSClassFromString("GSPathOperator")
if hasattr(GSPathOperator, 'intersectPaths_with_error_') and callable(
Expand Down

0 comments on commit 44abc25

Please sign in to comment.