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 (406)
games submitted by our members
Games in WIP (293)
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  
  Rotation  (Read 887 times)
0 Members and 1 Guest are viewing this topic.
Offline morello

Junior Newbie





« Posted 2010-11-15 13:05:28 »

Being stupid here, but I can't figure this out.

I am working in JOGL, and the universe I am modelling is a unit cube, centered on the origin. I want to use the mouse to spin the cube about its centre, to view it from an angle. This is exactly he same as if the view is orbiting the cube at a constant radius.

My mouse handler accumulates x and y movements to build up an XRot and YRot value. Then in my display method I do:

        gl.glRotated(gs.getXRotation(), 1.0f, 0.0f, 0.0f);
        gl.glRotated(gs.getYRotation(), 0.0f, 1.0f, 0.0f);
        gl.glRotated(gs.getZRotation(), 0.0f, 0.0f, 1.0f);
        gl.glTranslated(axes.getXStart() - axes.getRange()/2, axes.getYStart() - axes.getRange()/2, axes.getZStart() - axes.getRange()/2);
        gl.glScaled(axes.getRange(), axes.getRange(), axes.getRange());

(Z rotation is always 0, x/y/z start is 0, range is 1). Now the bottom corner of the cube rotates about the origin, but unfortunately the cube itself also rotates about the corner. So, I can see the cube from any angle, but it isn't always in the centre of the screen.

Anyone know of a simple tutorial to get a  cube to rotate about its own centre?
Offline ShannonSmith
« Reply #1 - Posted 2010-11-15 17:27:05 »

Rotation is always about the origin, but you can move the origin with glTranslate(). If don't want the view of the object to be translated after you've done the rotation just translate back.

1  
2  
3  
glTranslate(center.x,center.y,center.z);
glRotate(angle,axis.x,axis.y,axis.z);
glTranslate(-center.x,-center.y,-center.z);

Offline morello

Junior Newbie





« Reply #2 - Posted 2010-11-15 19:46:32 »

Thanks, but that's not quite what I want to do. I want to draw a 1 unit cube which is centred on the origin (ie the x/y/z faces are all at +/- 0.5).

I want that cube to rotate around the origin - the cube should never leave its original enclosing sphere.

But, I also want the cube to have its own coordinate system, so that I can draw a point inside the cube using coordinate values between 0 and 1. I hope that is clear, its a bit confusing to describe.

My thinking was, first rotate (about the origin) then translate to move the origin to (-.5, -.5, -.5), but that doesn't work at all. Possibly I am misunderstanding how translate works?

Rotation is always about the origin, but you can move the origin with glTranslate(). If don't want the view of the object to be translated after you've done the rotation just translate back.

1  
2  
3  
glTranslate(center.x,center.y,center.z);
glRotate(angle,axis.x,axis.y,axis.z);
glTranslate(-center.x,-center.y,-center.z);


Games published by our own members! Check 'em out!
Try the Free Demo of Titan Attacks
Offline ShannonSmith
« Reply #3 - Posted 2010-11-15 21:02:01 »

I think you have the right idea, can you define what exactly you mean by doesn't work at all? If it's a black screen it could be problems with the way the frustum is set up. One easy way to do it is forget about translate/rotate and just use gluLookAt().

Offline morello

Junior Newbie





« Reply #4 - Posted 2010-11-15 22:26:12 »

Fixed it now - the coordinates were actually working properly, the problem was with the way I was drawing the cube (using further rotates which were not set up properly).

I guess I should have used a better 3D model to test with. Thanks for your help.
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!
 
Get high quality music tracks 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 (81 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (187 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.097 seconds with 21 queries.