Path should create a Path, not a Polygon
This commit is contained in:
parent
9bfb3bef9f
commit
bd4085365f
1 changed files with 2 additions and 2 deletions
|
|
@ -351,7 +351,7 @@ class Path(Shape):
|
|||
|
||||
return (type(self), reordered_vertices.data.tobytes(), width0, self.cap, self.layer), \
|
||||
(offset, scale/norm_value, rotation, False, self.dose), \
|
||||
lambda: Polygon(reordered_vertices*norm_value, width=self.width*norm_value,
|
||||
lambda: Path(reordered_vertices*norm_value, width=self.width*norm_value,
|
||||
cap=self.cap, layer=self.layer)
|
||||
|
||||
def clean_vertices(self) -> 'Path':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue