cadquery-freecad-module/cadquery/__init__.py
2013-04-15 21:46:52 -04:00

39 lines
1.3 KiB
Python

"""
Copyright (C) 2011-2013 Parametric Products Intellectual Holdings, LLC
This file is part of CadQuery.
CadQuery is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
CadQuery is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; If not, see <http://www.gnu.org/licenses/>
"""
#these items point to the freecad implementation
from .freecad_impl.geom import Plane,BoundBox,Vector
from .freecad_impl.shapes import Shape,Vertex,Edge,Wire,Solid,Shell,Compound
from .freecad_impl.exporters import SvgExporter, AmfExporter, JsonExporter
#these items are the common implementation
from .CQ import CQ
from .workplane import Workplane
from . import plugins
from . import selectors
__all__ = [
'CQ','Workplane','plugins','selectors','Plane','BoundBox',
'Shape','Vertex','Edge','Wire','Solid','Shell','Compound',
'SvgExporter','AmfExporter','JsonExporter',
'plugins'
]
__version__ = 0.9