mirror of
https://github.com/csirmaz/openscad-py.git
synced 2025-06-21 02:15:40 +02:00
28 lines
940 B
Python
28 lines
940 B
Python
|
|
from openscad_py.point import Point
|
|
from openscad_py.object_ import Object
|
|
|
|
from openscad_py.header import Header
|
|
|
|
# Traditional objects
|
|
from openscad_py.cube import Cube
|
|
from openscad_py.cylinder import Cylinder
|
|
from openscad_py.polyhedron import Polyhedron
|
|
from openscad_py.path_tube import PathTube
|
|
from openscad_py.circle import Circle
|
|
from openscad_py.polygon import Polygon
|
|
|
|
from openscad_py.collection import Collection
|
|
|
|
# Modifier objects
|
|
from openscad_py.translate import Translate
|
|
from openscad_py.rotate import Rotate
|
|
from openscad_py.scale import Scale
|
|
from openscad_py.color import Color
|
|
from openscad_py.linear_extrude import LinearExtrude
|
|
from openscad_py.rotate_extrude import RotateExtrude
|
|
from openscad_py.radial_offset import RadialOffset
|
|
from openscad_py.delta_offset import DeltaOffset
|
|
from openscad_py.union import Union
|
|
from openscad_py.intersection import Intersection
|
|
from openscad_py.difference import Difference
|