We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When testing docs/tutorial_joints.py the function write_svg in this file fails. If I change this in topology/utils.py, it works
docs/tutorial_joints.py
write_svg
topology/utils.py
diff --git a/src/build123d/topology/utils.py b/src/build123d/topology/utils.py index c876ba2..c1bbb1e 100644 --- a/src/build123d/topology/utils.py +++ b/src/build123d/topology/utils.py @@ -424,7 +424,7 @@ def unwrapped_shapetype(obj: Shape) -> TopAbs_ShapeEnum: if len(shapetypes) == 1: result = shapetypes.pop() else: - result = shapetype(obj) + result = shapetype(obj.wrapped) else: result = shapetype(obj.wrapped) return result
After this change, all build123d tests are still successful
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When testing
docs/tutorial_joints.py
the functionwrite_svg
in this file fails.If I change this in
topology/utils.py
, it worksAfter this change, all build123d tests are still successful
The text was updated successfully, but these errors were encountered: