Rename lid method

to not collide with global lid object.
This commit is contained in:
Florian Festi 2023-05-25 21:37:16 +02:00
parent aadae07278
commit 7459e133b2
1 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@ A paper creaser (or bone folder) is also useful.
0, 0,
] ]
+ self.lid_cut(lid_cut_length) + self.lid_cut(lid_cut_length)
+ self.lid(width - 2 * self.thickness) + self.lid_tab(width - 2 * self.thickness)
+ [0] + [0]
+ self.lid_cut(lid_cut_length, reverse=True) + self.lid_cut(lid_cut_length, reverse=True)
+ [ + [
@ -188,11 +188,11 @@ A paper creaser (or bone folder) is also useful.
return ( return (
self.side_with_finger_hole(width, self.finger_hole_diameter) self.side_with_finger_hole(width, self.finger_hole_diameter)
+ half_side + half_side
+ self.lid(width) + self.lid_tab(width)
+ list(reversed(half_side)) + list(reversed(half_side))
) )
def lid(self, width): def lid_tab(self, width):
return [ return [
self.lid_height - self.lid_radius, self.lid_height - self.lid_radius,
(90, self.lid_radius), (90, self.lid_radius),