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 | |
parent | fc45c16c1442984a6e6e4ad308dbf15e91fd215c (diff) |
javac - setup encoding to UTF-8
Diffstat (limited to 'src')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java | 8 | ||||
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java | 6 |
2 files changed, 7 insertions, 7 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; diff --git a/src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java b/src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java index a05bd3ba2..887f8c34f 100644 --- a/src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java +++ b/src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java @@ -478,7 +478,7 @@ public class T2Interpreter { } /** - * Causes two B�zier curves, as described by the arguments (as + * Causes two Bezier curves, as described by the arguments (as * shown in Figure 2 below), to be rendered as a straight line when * the flex depth is less than fd /100 device pixels, and as curved lines * when the flex depth is greater than or equal to fd/100 device @@ -524,7 +524,7 @@ public class T2Interpreter { /** * Finishes a charstring outline definition, and must be the - * last operator in a character�s outline. + * last operator in a character's outline. */ private void _endchar() { endContour(); @@ -668,7 +668,7 @@ public class T2Interpreter { } /** - * Performs a circular shift of the elements num(N�1) ... num0 on + * Performs a circular shift of the elements num(Nx1) ... num0 on * the argument stack by the amount J. Positive J indicates upward * motion of the stack; negative J indicates downward motion. * The value N must be a non-negative integer, otherwise the |