20 lines
266 B
Python
20 lines
266 B
Python
from ocp_vscode import *
|
|
from build123 import *
|
|
|
|
set_port(3939)
|
|
|
|
l = 31
|
|
b = 29
|
|
h = 58
|
|
|
|
with BuildPart() as box:
|
|
with BuildSketch() as bodem:
|
|
Rectangle(l+2.4, b+2.4)
|
|
fillet(bodem.vertices(), radius=10)
|
|
extrude(amount=4)
|
|
|
|
|
|
|
|
|
|
show_all()
|