Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (404)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  problem on picking point with JOGL  (Read 658 times)
0 Members and 1 Guest are viewing this topic.
Offline nkint

JGO Visitor




« Posted 2010-12-22 19:09:38 »

hi guys
i need to pick some point on the JOGL canvas
with gluUnproject.

i'm totally new with opengl.

first, reshape method:
               
1  
2  
3  
4  
5  
6  
gl.glViewport(0, 0, width, height);
      gl.glMatrixMode(GL.GL_PROJECTION);
      gl.glLoadIdentity();
      glu.gluPerspective(45.0f, h, 1.0, 20.0);
      gl.glMatrixMode(GL.GL_MODELVIEW);
      gl.glLoadIdentity();


display:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
               gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
      gl.glLoadIdentity();
     
      gl.glPushMatrix();
      gl.glTranslatef(-1.5f, 0.0f, -6.0f); // WHY THIS???
     draw(gl);
     
      if(detect)performSelection(gl);
     
      gl.glPopMatrix();
      gl.glFlush();


in draw.. i draw the point Vector3D x0: (0.6, 1, 2)

and performSelection is:

take the eye's point
1  
2  
3  
4  
5  
glu.gluUnProject(width/2, height/2, 0, 
            mvmatrix, 0, projmatrix, 0, viewport, 0, wcoord, 0);
        //System.out.println("World coords at z=0.0 are ( "+ wcoord[0] + ", " + wcoord[1] + ", " + wcoord[2]+ ")");

        Vector3D x1 = new Vector3D(wcoord[0], wcoord[1], wcoord[2]);  


take the mouse point on my near plane:
1  
2  
3  
4  
glu.gluUnProject( x,  realy, 1, //
           mvmatrix, 0, projmatrix, 0, viewport, 0, wcoord, 0);
        //System.out.println("World coords at z=1.0 are ("+ wcoord[0] + ", " + wcoord[1] + ", " + wcoord[2]+ ")");
       Vector3D x2 = new Vector3D(wcoord[0], wcoord[1], wcoord[2]);


make the line between x1 and x2
and do the distance between line and x0.

now, my problem is that it doesn't work.. if i mouve the mouse on the point distance is 0.2, and if i move the mouse on the bottom left cornet is 3, ok.
but if i move the mouse on the bottom (different y) but aligned with point x..
i get 0.2 too.

why??
can you help me?
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (34 views)
2013-05-17 21:29:12

alaslipknot (42 views)
2013-05-16 21:24:48

gouessej (72 views)
2013-05-16 00:53:38

gouessej (71 views)
2013-05-16 00:17:58

theagentd (79 views)
2013-05-15 15:01:13

theagentd (74 views)
2013-05-15 15:00:54

StreetDoggy (116 views)
2013-05-14 15:56:26

kutucuk (140 views)
2013-05-12 17:10:36

kutucuk (140 views)
2013-05-12 15:36:09

UnluckyDevil (149 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.07 seconds with 20 queries.