Start working on python package

This commit is contained in:
Yeicor
2024-02-01 21:03:20 +01:00
parent 24d9af17ee
commit 8fd3a2247a
15 changed files with 240 additions and 13 deletions

15
yacv_server/logo/logo.py Normal file
View File

@@ -0,0 +1,15 @@
from build123d import *
from tessellate import tessellate
def logo() -> Compound:
"""Builds the CAD part of the logo"""
with BuildPart() as logo_obj:
Box(1, 2, 3)
return logo_obj.part
if __name__ == "__main__":
obj = logo()
tessellate(obj.wrapped, lambda *args: print(args))