-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Polygonidl #720
Merged
Merged
Polygonidl #720
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
ce3bb4e
First cut of triangle plane test.
pjcozzi 499da4f
Made line segment plane intersection test private
pjcozzi a57c0bb
Added Plane type
pjcozzi 1779db8
Added Plane type and triangle-plane test to CHANGES.md.
pjcozzi 2ef3f70
Use Plane instead of separate normal and d
pjcozzi 553e45b
Merge branch 'polygonidl' of github.com:AnalyticalGraphicsInc/cesium …
pjcozzi ddebb2d
Added tests for exceptions
pjcozzi 55bf30e
First cut of PolygonPipeline.wrapLongitude. Does not work yet.
pjcozzi 97cfe50
Merged master into polygonidl
pjcozzi dc54e69
Merge master into polygonidl. The time to run the tests almost went …
pjcozzi 1437541
Merged master into polygonidl
pjcozzi 41df010
Merged master into polygonidl
pjcozzi eaaee87
Merged master into polygonidl
pjcozzi 84b5a25
Merged master into polygonidl
pjcozzi 1a82ec5
Fixed polygon tests
pjcozzi 62dc7ec
Merge master to polygonidl
pjcozzi 2046355
Merged master into polygonidl
pjcozzi 72019c5
Merged master into polygonidl
pjcozzi 604eb10
Updates after merge
pjcozzi 9a91e5f
Merge branch 'master' into polygonidl
pjcozzi 8a72ddd
Merged master to polygonidl
pjcozzi 1b1f945
Merge branch 'polygonidl' of github.com:AnalyticalGraphicsInc/cesium …
pjcozzi b387eee
Merged master into polygonidl
pjcozzi e45eae3
Merge branch 'master' into polygonidl
bagnell 9a5e145
Merge branch 'plane' into polygonidl
bagnell 1438d9b
Update code after merge.
bagnell 5eb53e5
Merge remote-tracking branch 'origin/master' into polygonidl
pjcozzi 0b60e0b
Merge branch 'master' into polygonidl
pjcozzi 9debf43
Merge remote-tracking branch 'origin/master' into polygonidl
pjcozzi ccc6eaf
Merged master to polygonidl
pjcozzi da9adc0
Merged master to polygonidl
pjcozzi f063d96
Merge remote-tracking branch 'origin/master' into polygonidl
pjcozzi 8708500
Merge remote-tracking branch 'origin/master' into polygonidl
pjcozzi 5455333
Merge master to polygonidl
pjcozzi fe52dcb
offset new triangles away from IDL
78420ba
variable cleanup
956052a
Check if bounding sphere intersects with IDL
8299faa
catch case of 2 points of triangle being at the the intersection with…
51958a7
Merge remote-tracking branch 'agi/master' into polygonidl
2413324
added IDL specific triangle plane intersection test.
fce825c
cleaned up documentation and comments
cd33da6
Merge branch 'master' into polygonidl
3a7d363
Merge branch 'master' into polygonidl
7843283
fixed documentation
eaf79f2
fixed documentation
d997fbb
consolidated slice triangle function into wrapLongitude
ccc4723
removed unused requires
06a7a4e
calculate bounding sphere before creating mesh
3486a02
Merge branch 'master' into polygonidl
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,4 +138,4 @@ | |
}); | ||
</script> | ||
</body> | ||
</html> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,4 +208,4 @@ define([ | |
}; | ||
|
||
return EllipsoidTangentPlane; | ||
}); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,4 +144,4 @@ define([ | |
}; | ||
|
||
return Plane; | ||
}); | ||
}); |
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.
Do you mind adding an
@example
? Also, it it is a good idea to build the doc and make sure everything shows up OK.