17 lines
258 B
Python
17 lines
258 B
Python
from ocp_vscode import *
|
|
from build123d import *
|
|
|
|
set_port(3939)
|
|
|
|
b = 17
|
|
h = 7
|
|
l = 50
|
|
|
|
with BuildPart() as clamp:
|
|
with BuildSketch() as sk_clamp:
|
|
Rectangle(b, l)
|
|
fillet(sk_clamp.vertices(), radius=1.2)
|
|
extrude(amount=2.4)
|
|
|
|
|
|
show_all() |