-
Notifications
You must be signed in to change notification settings - Fork 4
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
svector points #112
Open
skygering
wants to merge
20
commits into
JuliaGeo:main
Choose a base branch
from
Caltech-OCTO:sg/svector_points
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
svector points #112
Changes from 8 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
0b62b49
Start switching to StaticArray points
skygering 900460b
Merge branch 'main' into sg/svector_points
skygering 06a4a8e
Update basic transforms to use svector points
skygering afab2c8
Update non poly fixes to use svector points
skygering 29cd346
Update polygon clipping to use svector points
skygering 9d5c2f8
Update centroid to use svpoints
skygering 8884057
Update polygonize to use svector point
skygering 72d2796
Cleanup changes
skygering b679282
Remove show call
skygering 4f8bc8b
Merge branch 'main' into sg/svector_points
skygering e984721
Switch SVPoints to subtype of static array
skygering 8e54508
Experiment with SVPoint constructors
skygering ccd8fb1
Merge branch 'main' into sg/svector_points
skygering 201da83
Remove ambiguity
skygering f0e74fb
Update and consolidate point functions
skygering ebf83be
Change comment labels
skygering a20b8b5
Add general point constructor
skygering b0a6c3b
Merge branch 'main' into sg/svector_points
skygering 5bddba7
Update point constructors
skygering 3624dc6
Update new point types for measured
skygering 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
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
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.
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.
I'm not sure how to enable
SVPoint{Z, M, T}
- tried to do it the obvious way with:but that complains about Z and M being type variables. Any thoughts on how we could accomplish this would be great :D
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.
Yeah... this is also going to be needed for #97 so that we can actually store the extents... If we can't figure it out we could put that into the next PR.
I also don't know how to do it 😆 which is why I hard-coded for now
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.
Also, the functions that use it only currently work for 2D so it isn't the end of the world right now, but definitely a needed improvement.