diff options
author | Sven Gothel <[email protected]> | 2012-01-23 04:06:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-01-23 04:06:04 +0100 |
commit | 6bdf15f28da748c974536e799a9f6541e3615948 (patch) | |
tree | 1f9f40e0d7c2aa0fdffad85eef34b0c4c7296f73 /src/jogl/classes/com/jogamp/opengl | |
parent | fc45c16c1442984a6e6e4ad308dbf15e91fd215c (diff) |
javac - setup encoding to UTF-8
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java b/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java index 286c70e54..10ea29168 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java +++ b/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java @@ -571,9 +571,9 @@ public class PMVMatrix implements GLMatrixFunc { x = vec3f[0]; y = vec3f[1]; z = vec3f[2]; // Rotation matrix: - // xx(1−c)+c xy(1−c)+zs xz(1−c)-ys 0 - // xy(1−c)-zs yy(1−c)+c yz(1−c)+xs 0 - // xz(1−c)+ys yz(1−c)-xs zz(1−c)+c 0 + // xx(1-c)+c xy(1-c)+zs xz(1-c)-ys 0 + // xy(1-c)-zs yy(1-c)+c yz(1-c)+xs 0 + // xz(1-c)+ys yz(1-c)-xs zz(1-c)+c 0 // 0 0 0 1 final float xy = x*y; final float xz = x*z; @@ -643,7 +643,7 @@ public class PMVMatrix implements GLMatrixFunc { // 2*zNear/dx 0 A 0 // 0 2*zNear/dy B 0 // 0 0 C D - // 0 0 −1 0 + // 0 0 -1 0 final float zNear2 = 2.0f*zNear; final float dx=right-left; final float dy=top-bottom; |