This commit is contained in:
Roberto Alsina 2023-02-16 14:57:51 -03:00
parent 64db220a46
commit 31630ab1b0
3 changed files with 13 additions and 21 deletions

View File

@ -3,10 +3,6 @@ from cadquery2 import exporters
cpu_stand_positions = [(0, 0), (58, 0), (58, 48), (0, 48)]
lower_stands = (
cq.Sketch().push(cpu_stand_positions).circle(3, mode="a")
)
lower_stands = cq.Sketch().push(cpu_stand_positions).circle(3, mode="a")
higher_stands = (
cq.Sketch().push(cpu_stand_positions).circle(2.65 / 2, mode="a")
)
higher_stands = cq.Sketch().push(cpu_stand_positions).circle(2.65 / 2, mode="a")

View File

@ -3,10 +3,6 @@ from cadquery2 import exporters
cpu_stand_positions = [(0, 0), (23, 0), (23, 58), (0, 58)]
lower_stands = (
cq.Sketch().push(cpu_stand_positions).circle(3, mode="a")
)
lower_stands = cq.Sketch().push(cpu_stand_positions).circle(3, mode="a")
higher_stands = (
cq.Sketch().push(cpu_stand_positions).circle(2.65 / 2, mode="a")
)
higher_stands = cq.Sketch().push(cpu_stand_positions).circle(2.65 / 2, mode="a")