We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_create_xde
export_step
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
This fails for AttributeError: 'str' object has no attribute 'wrapped'.
AttributeError: 'str' object has no attribute 'wrapped'
part = Box(1, 1, 1) part.color = "black" # or "#000000" part.label = "box" export_step(part, part.label + ".step")
Using Color instead of string works, however string colors should be supported everywhere if supported anywhere.
Color
part.color = Color(0, 0, 0)
The text was updated successfully, but these errors were encountered:
Related to and likely solved by implementing #856
Sorry, something went wrong.
No branches or pull requests
This fails for
AttributeError: 'str' object has no attribute 'wrapped'
.Using
Color
instead of string works, however string colors should be supported everywhere if supported anywhere.The text was updated successfully, but these errors were encountered: