8 lines
238 B
Python
8 lines
238 B
Python
import cadquery as cq
|
|
|
|
cpu_stand_positions = [(0, 0), (58, 0), (58, 49), (0, 49)]
|
|
|
|
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")
|