diff options
author | Rami Santina <[email protected]> | 2011-03-25 12:09:43 +0200 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-03-25 12:09:43 +0200 |
commit | 731b4fe3c934d8e68d388025e20a0b0be22bf91d (patch) | |
tree | bc5b32f56bc40038603eef8db2fa30741bbc2bb9 /src/demo/GPUTextNewtDemo02.java | |
parent | 526af50c03af2e00a028caf4b8504e6c3f3c4221 (diff) |
Fix: GPUTextnewtDemo02 showing r2t algo output
Diffstat (limited to 'src/demo/GPUTextNewtDemo02.java')
-rw-r--r-- | src/demo/GPUTextNewtDemo02.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/demo/GPUTextNewtDemo02.java b/src/demo/GPUTextNewtDemo02.java index b048a3a68..c59368c37 100644 --- a/src/demo/GPUTextNewtDemo02.java +++ b/src/demo/GPUTextNewtDemo02.java @@ -118,9 +118,11 @@ class TextNewtWindow { } else if(arg0.getKeyCode() == KeyEvent.VK_6){ textGLListener.size -= 10; + System.err.println("Tex Size: " + textGLListener.size); } else if(arg0.getKeyCode() == KeyEvent.VK_7){ textGLListener.size += 10; + System.err.println("Tex Size: " + textGLListener.size); } } public void keyTyped(KeyEvent arg0) {} @@ -155,10 +157,10 @@ class TextNewtWindow { } float ang = 0; - float zoom = -300; + float zoom = -4000; float xTran = -100; float yTran = 40; - int size = 200; + int size = 190; public void display(GLAutoDrawable drawable) { GL3 gl = drawable.getGL().getGL3(); |