- upgrade to use the new notations in the Shapely's buffer method for the cap_style and join_style parameters (used to be integers, now they are strings or defines)
This commit is contained in:
@@ -731,7 +731,7 @@ class ExclusionAreas(QtCore.QObject):
|
||||
|
||||
for area in self.exclusion_areas_storage:
|
||||
new_area = deepcopy(area)
|
||||
new_area['shape'] = area['shape'].buffer(buffered_distance, join_style=2)
|
||||
new_area['shape'] = area['shape'].buffer(buffered_distance, join_style="mitre")
|
||||
buffered_storage.append(new_area)
|
||||
|
||||
# sort the Exclusion areas from the closest to the start_point to the farthest
|
||||
|
||||
Reference in New Issue
Block a user