-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Cartesian primitive types for issue 1082 #1120
Conversation
…m into issue1082 Conflicts: Source/Core/CorridorGeometry.js
(!position.equals(pyramid._visualizerPosition) || | ||
!orientation.equals(pyramid._visualizerOrientation))) { | ||
(!Cartesian3.equals(position, pyramid._visualizerPosition) || | ||
!Cartesian3.equals(orientation, pyramid._visualizerOrientation))) { |
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.
This should be Quaternion.equals
.
@cmorse I finished looking at your changes in Source. (I haven't looked at the tests yet.) |
I'm pretty sure I fixed the culling issue that @mramato found. Is this something worth writing a test for? |
I think I got everything. This is ready for another review. |
|
||
Cartesian3.negate(tile.northeastCornerCartesian, cartesian3Scratch); | ||
Cartesian3.cross(cartesian3Scratch, Cartesian3.UNIT_Z, cartesian3Scratch); | ||
Cartesian3.normalize(cartesian3Scratch, tile.eastNorma); |
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.
Typo tile.eastNorma
.
This looks good to me. Tests pass. I tested all of the Sandcastle examples and loaded a bunch of CZML files for testing. Thanks @cmorse. Merging. |
Cartesian primitive types for issue 1082
Cartesian primitive types for issue #1082