-
Notifications
You must be signed in to change notification settings - Fork 49
Various small fixes #211
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
Merged
Merged
Various small fixes #211
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
5f7c442
fix: fault segment structural frame was intiialised incorrectly
lachlangrose 9b2880e
fix: adding copy method as a required method for all geological features
lachlangrose d5bf487
fix: allow feature to be initialised without a builder
lachlangrose b554522
fix: bug with pyvista glyphs when working in a real world coordinate …
lachlangrose d4f3e12
fix: rescale/scale no longer default to in place and will copy the po…
lachlangrose bed530f
fix: interpolator factory with data works
lachlangrose 4d00075
ci: adding icon to docs
lachlangrose 8764278
fix: removing config details for release please
lachlangrose b95fec0
fix: interface constraints used wrong reference to interpolation matrix
lachlangrose d0a9c5b
fix: throw error if interpolation support doesn't have 3 steps
lachlangrose 6e378cb
style: style fixes by ruff and autoformatting by black
lachlangrose ee7f267
typo, steps_vector instead of nsteps
lachlangrose f427ad0
fix: order of arguments incorrect for fault segment
lachlangrose 08e5957
fix: add copy to intrusion
lachlangrose 4466e00
Merge branch 'fix/cleanup' of github.com:Loop3D/LoopStructural into f…
lachlangrose a1613b0
style: style fixes by ruff and autoformatting by black
lachlangrose a4c98ed
fix: bb plotting in correct place when not using global origin
lachlangrose 8fed1f1
fix: inequality pairs being used by FD interpolator
lachlangrose 7bccdf5
Merge branch 'fix/cleanup' of github.com:Loop3D/LoopStructural into f…
lachlangrose ded85d6
style: style fixes by ruff and autoformatting by black
lachlangrose 04d6f4a
style: remove comments/old code
lachlangrose 307ce66
Merge branch 'fix/cleanup' of github.com:Loop3D/LoopStructural into f…
lachlangrose 3fa75a4
fix: add a feature to project a vector onto a plane
lachlangrose 628e6d8
style: style fixes by ruff and autoformatting by black
lachlangrose 47cb0a5
fix: updating transformer to take angle and translation as input
lachlangrose 7deafab
Merge branch 'fix/cleanup' of github.com:Loop3D/LoopStructural into f…
lachlangrose 3dd2daf
style: style fixes by ruff and autoformatting by black
lachlangrose b22c0e9
fix: disable axis_function and limb_function for folds
lachlangrose 21bd173
Merge branch 'fix/cleanup' of github.com:Loop3D/LoopStructural into f…
lachlangrose 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| name: Build documentation and deploy | ||
| name: "📚 Build documentation and deploy " | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Using np.max for reprojection might be incorrect for non-uniform bounding boxes. Consider using element-wise multiplication instead: xyz * (self.global_maximum - self.global_origin) + self.global_origin.