This commit is contained in:
Yeicor
2024-03-10 17:36:48 +01:00
parent 49df7af970
commit f3672202ea
4 changed files with 8 additions and 6 deletions

View File

@@ -11,12 +11,12 @@ from yacv_server import show, export_all # Check out other exported methods for
# %%
# Create a simple object
with BuildPart() as obj:
with BuildPart() as example:
Box(10, 10, 5)
Cylinder(4, 5, mode=Mode.SUBTRACT)
# Show it in the frontend with hot-reloading
show(obj)
show(example)
# %%