Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a cleanup of the code in the
examples/
dir. The primary goal was removing theimport *
pattern and removing cruft that might confuse a new user. I am aware of #114. I believe the desire for clarity is maintained here without the negative consequences of namespace pollution.I noticed that there were some type hinting issues around
translate()
andextrude_along_path()
. The code seems to function so it is probably too restrictive typing or incorrect assumptions about the args.Again like my other PRs these commits should be broken into general themes. e950c53 converts some lists to tuples and should only leave the typing issues I mentioned above.
I love all these examples and it has made the code a lot more understandable. Thank you for including these. :)