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

View file

@ -61,12 +61,13 @@ from .one_d import (
topo_explore_connected_faces, topo_explore_connected_faces,
) )
from .two_d import Face, Shell, Mixin2D, sort_wires_by_build_order 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 from .composite import Compound, Curve, Sketch, Part
__all__ = [ __all__ = [
"Shape", "Shape",
"Comparable", "Comparable",
"DraftAngleError",
"ShapePredicate", "ShapePredicate",
"GroupBy", "GroupBy",
"ShapeList", "ShapeList",