draft - adding missing init files

This commit is contained in:
gumyr 2025-05-25 16:16:14 -04:00
parent 44c3bac548
commit 10ec85bcf5
2 changed files with 4 additions and 1 deletions

View file

@ -163,6 +163,7 @@ __all__ = [
"LinearJoint",
"CylindricalJoint",
"BallJoint",
"DraftAngleError",
# Exporter classes
"Export2D",
"ExportDXF",
@ -197,6 +198,7 @@ __all__ = [
"add",
"bounding_box",
"chamfer",
"draft",
"extrude",
"fillet",
"full_round",

View file

@ -61,12 +61,13 @@ from .one_d import (
topo_explore_connected_faces,
)
from .two_d import Face, Shell, Mixin2D, sort_wires_by_build_order
from .three_d import Solid, Mixin3D
from .three_d import Solid, Mixin3D, DraftAngleError
from .composite import Compound, Curve, Sketch, Part
__all__ = [
"Shape",
"Comparable",
"DraftAngleError",
"ShapePredicate",
"GroupBy",
"ShapeList",