From 6bdf15f28da748c974536e799a9f6541e3615948 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 23 Jan 2012 04:06:04 +0100 Subject: javac - setup encoding to UTF-8 --- src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/jogl/classes/com/jogamp/opengl/util') 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; -- cgit v1.2.3