-
Notifications
You must be signed in to change notification settings - Fork 327
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
Determinant fix #167
Open
caller
wants to merge
11
commits into
NASAWorldWind:develop
Choose a base branch
from
WorldWindEarth:determinantFix
base: develop
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
Determinant fix #167
Conversation
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
port was done using git grep -lz 'javax.media.opengl' | xargs -0 perl -i'' -pE "s/javax.media.opengl/com.jogamp.opengl/g" git grep -lz 'javax.media.nativewindow' | xargs -0 perl -i'' -pE "s/javax.media.nativewindow/com.jogamp.nativewindow/g" Signed-off-by: Xerxes Rånby <[email protected]>
Signed-off-by: Xerxes Rånby <[email protected]>
Imported using: wget http://jogamp.org/deployment/v2.3.2/archive/jogamp-all-platforms.7z 7z x jogamp-all-platforms.7z cp jogamp-all-platforms/jar/gluegen-rt.jar . cp jogamp-all-platforms/jar/gluegen-rt-natives-*.jar . cp jogamp-all-platforms/jar/jogl-all.jar . cp jogamp-all-platforms/jar/jogl-all-natives-*.jar . Signed-off-by: Xerxes Rånby <[email protected]>
… xranby-master
Add null checks to ColladaMeshShape.java
Added "Community Edition" and "WWJ-CE" branding, updated links to WorldWindEarth, cleaned up descriptions.
…except me found and fixed this....
Added a unit-test that checks if the determinant of a Matrix is equal to the determinant of its transpose. This test will break without the determinant-fix.
Changed the determinant test to check that the condition hold for any random matrix (and not jus the sample matrix used initially).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
see all details here:
#155
I have no idea why this wasnt fixed a decade ago