2023-02-17 17:32:01 +00:00
|
|
|
import cadquery as cq
|
2022-11-24 14:24:38 +00:00
|
|
|
|
2023-02-16 17:57:51 +00:00
|
|
|
cpu_stand_positions = [(0, 0), (23, 0), (23, 58), (0, 58)]
|
2023-02-16 17:42:31 +00:00
|
|
|
|
2023-02-16 17:57:51 +00:00
|
|
|
lower_stands = cq.Sketch().push(cpu_stand_positions).circle(3, mode="a")
|
2022-11-24 14:24:38 +00:00
|
|
|
|
2023-02-16 17:57:51 +00:00
|
|
|
higher_stands = cq.Sketch().push(cpu_stand_positions).circle(2.65 / 2, mode="a")
|