80 lines
1.5 KiB
Python
80 lines
1.5 KiB
Python
from importlib.metadata import version, PackageNotFoundError
|
|
|
|
try:
|
|
__version__ = version("cadquery")
|
|
except PackageNotFoundError:
|
|
# package is not installed
|
|
__version__ = "2.6-dev"
|
|
|
|
# these items point to the OCC implementation
|
|
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location
|
|
from .occ_impl.shapes import (
|
|
Shape,
|
|
Vertex,
|
|
Edge,
|
|
Face,
|
|
Wire,
|
|
Solid,
|
|
Shell,
|
|
Compound,
|
|
sortWiresByBuildOrder,
|
|
)
|
|
from .occ_impl import exporters
|
|
from .occ_impl import importers
|
|
|
|
# these items are the common implementation
|
|
|
|
# the order of these matter
|
|
from .selectors import (
|
|
NearestToPointSelector,
|
|
ParallelDirSelector,
|
|
DirectionSelector,
|
|
PerpendicularDirSelector,
|
|
TypeSelector,
|
|
DirectionMinMaxSelector,
|
|
StringSyntaxSelector,
|
|
Selector,
|
|
)
|
|
from .sketch import Sketch
|
|
from .cq import CQ, Workplane
|
|
from .assembly import Assembly, Color, Constraint
|
|
from . import selectors
|
|
from . import plugins
|
|
|
|
|
|
__all__ = [
|
|
"CQ",
|
|
"Workplane",
|
|
"Assembly",
|
|
"Color",
|
|
"Constraint",
|
|
"plugins",
|
|
"selectors",
|
|
"Plane",
|
|
"BoundBox",
|
|
"Matrix",
|
|
"Vector",
|
|
"Location",
|
|
"sortWiresByBuildOrder",
|
|
"Shape",
|
|
"Vertex",
|
|
"Edge",
|
|
"Wire",
|
|
"Face",
|
|
"Solid",
|
|
"Shell",
|
|
"Compound",
|
|
"exporters",
|
|
"importers",
|
|
"NearestToPointSelector",
|
|
"ParallelDirSelector",
|
|
"DirectionSelector",
|
|
"PerpendicularDirSelector",
|
|
"TypeSelector",
|
|
"DirectionMinMaxSelector",
|
|
"StringSyntaxSelector",
|
|
"Selector",
|
|
"plugins",
|
|
"Sketch",
|
|
]
|