Files
cadquery/cadquery/__init__.py

22 lines
827 B
Python
Raw Normal View History

2013-04-14 18:39:47 -04:00
#these items point to the freecad implementation
2013-04-16 22:29:06 -04:00
from .freecad_impl.geom import Plane,BoundBox,Vector,Matrix,sortWiresByBuildOrder
from .freecad_impl.shapes import Shape,Vertex,Edge,Face,Wire,Solid,Shell,Compound
from .freecad_impl import exporters
from .freecad_impl import importers
2013-04-14 18:39:47 -04:00
2013-04-15 21:46:52 -04:00
#these items are the common implementation
2013-04-16 22:29:06 -04:00
#the order of these matter
2015-12-01 22:54:36 -05:00
from .selectors import *
2015-12-09 21:01:14 -05:00
from .cq import *
2013-04-16 22:29:06 -04:00
2013-04-15 21:46:52 -04:00
2013-04-14 18:39:47 -04:00
__all__ = [
'CQ','Workplane','plugins','selectors','Plane','BoundBox','Matrix','Vector','sortWiresByBuildOrder',
'Shape','Vertex','Edge','Wire','Face','Solid','Shell','Compound','exporters', 'importers',
2015-12-08 22:36:19 -05:00
'NearestToPointSelector','ParallelDirSelector','DirectionSelector','PerpendicularDirSelector',
'TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins'
2013-04-14 18:39:47 -04:00
]
2017-04-12 21:33:38 -04:00
__version__ = "1.0.0"