-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Add support for meshes to primitive builders #33
Merged
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
27ad953
Added trimesh to depencencies
lorycontixd 8acc9cd
Implemented MeshBuilder class, plus its inertia and geometry overrides
lorycontixd 16e652c
Implemented 2 tests on meshbuilder
lorycontixd f10a04c
Run isort on meshbuilder tests
lorycontixd 91f2332
Updated conda dependencies on github actions with trimesh
lorycontixd 38a1a5c
Updated scale type hinting to numpy NDArray
lorycontixd 7113789
Updated test on meshbuilder to use tempfile rather than creating file…
lorycontixd 22b9816
Forced mesh type to be .stl on mesh load
lorycontixd 1fbf07f
Added docstring to meshbuilder and reformatted affected files
lorycontixd d1d73f6
Added tempfile inside context for other meshbuilder test
lorycontixd 07789d3
Added tempfile inside context for other meshbuilder test
lorycontixd e00ee38
Added extra type checks and extension parsig on mesh path
lorycontixd f4bffde
Removed leftover comments
lorycontixd fdc1fec
Added type checks on mesh file type
lorycontixd 17d5028
Reverted extension extraction to usage of pathlib
lorycontixd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last curiosity, any specific reason to go back to string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was just not working without a suffix keyword for NamedTempFile. I can easily revert back.