From b2a7e7dad36393a6ed19ae10178d5a4952a640a8 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 5 Apr 2022 18:25:01 -0700 Subject: [PATCH] add missing import of CT_DIFFERENCE --- snarled/clipper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snarled/clipper.py b/snarled/clipper.py index f6ba60a..8c01e2e 100644 --- a/snarled/clipper.py +++ b/snarled/clipper.py @@ -6,7 +6,7 @@ from typing import Sequence, Optional, List from numpy.typing import ArrayLike from pyclipper import ( Pyclipper, PT_CLIP, PT_SUBJECT, CT_UNION, CT_INTERSECTION, PFT_NONZERO, PFT_EVENODD, - PyPolyNode, + PyPolyNode, CT_DIFFERENCE, ) from .types import contour_t