mirror of
https://github.com/csirmaz/openscad-py.git
synced 2025-06-21 02:15:40 +02:00
7 lines
163 B
Python
7 lines
163 B
Python
|
|
from openscad_py import Cube, Cylinder
|
|
|
|
|
|
print(Cube([1,1,1]).render())
|
|
print(Cylinder(h=5, r=2).render())
|
|
print(Cylinder.from_ends(2, [0,0,0], [1,0,0]).render())
|