Skip to content
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
wants to merge 11 commits into
base: develop
Choose a base branch
from
Open

Commits on Jan 14, 2016

  1. Update to JogAmp JOGL 2.3.2 released on 2015 10 10

    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]>
    xranby committed Jan 14, 2016
    Configuration menu
    Copy the full SHA
    109d8e1 View commit details
    Browse the repository at this point in the history
  2. Fix JogAmp JOGL 2.x.x -> 2.3.2 API changes

    Signed-off-by: Xerxes Rånby <[email protected]>
    xranby committed Jan 14, 2016
    Configuration menu
    Copy the full SHA
    e6794ae View commit details
    Browse the repository at this point in the history
  3. Import JogAmp JOGL 2.3.2 jars

    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 committed Jan 14, 2016
    Configuration menu
    Copy the full SHA
    52e2ae3 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2016

  1. Configuration menu
    Copy the full SHA
    dfb22a8 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2019

  1. Configuration menu
    Copy the full SHA
    3a1f84d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    42091ad View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2019

  1. Merge pull request #8 from christianliebl/master

    Add null checks to ColladaMeshShape.java
    emxsys authored Apr 9, 2019
    Configuration menu
    Copy the full SHA
    47e91d4 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    Added "Community Edition" and "WWJ-CE" branding, updated links to WorldWindEarth, cleaned up descriptions.
    emxsys authored Apr 9, 2019
    Configuration menu
    Copy the full SHA
    86454fa View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2019

  1. WTF: determinant math computation was broken for a decade and no one …

    …except me found and fixed this....
    Marco Moeller committed Apr 10, 2019
    Configuration menu
    Copy the full SHA
    2e5bbd1 View commit details
    Browse the repository at this point in the history
  2. Added unit-test.

    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.
    wcmatthysen committed Apr 10, 2019
    Configuration menu
    Copy the full SHA
    1e5d3da View commit details
    Browse the repository at this point in the history
  3. Generalize determinant test.

    Changed the determinant test to check that the condition hold for any
    random matrix (and not jus the sample matrix used initially).
    wcmatthysen committed Apr 10, 2019
    Configuration menu
    Copy the full SHA
    9a59840 View commit details
    Browse the repository at this point in the history