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
|
2014-08-18 14:45:02 -04:00
|
|
|
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__ = [
|
2014-12-01 11:51:26 -05:00
|
|
|
'CQ','Workplane','plugins','selectors','Plane','BoundBox','Matrix','Vector','sortWiresByBuildOrder',
|
2016-11-29 09:02:38 +08:00
|
|
|
'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"
|