inkstitch/lib/svg/clip.py

19 wiersze
608 B
Python

# Authors: see git history
#
# Copyright (c) 2023 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
from shapely.geometry import MultiPolygon, Polygon
from ..elements import EmbroideryElement
def get_clip_path(node):
# get clip and apply node transform
clip = node.clip
transform = node.composed_transform()
clip.transform = transform
clip_element = EmbroideryElement(clip)
clip_element.paths.sort(key=lambda point_list: Polygon(point_list).area, reverse=True)
return MultiPolygon([(clip_element.paths[0], clip_element.paths[1:])])