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  
  3D controller, perspective correct interpolation  (Read 1237 times)
0 Members and 1 Guest are viewing this topic.
Offline theagentd
« Posted 2012-05-19 17:39:29 »

Hello. I want to add a 3D position controller like the red, green and blue arrows in this Maya:


The problem is handling mouse input. The movement has to snap to the axes of the controller. I therefore thought that the best way of doing this is to project the axis to the screen (multiply it by the view and projection matrices) so I simply have a 2D line on the screen. I then find the closest point lying on this line from the mouse. Finally I un-project this point back to world space, and I'll know exactly where the controller has been moved in 3D space.

The problem is that I don't know how to correctly interpolate the depth of the point based on the two end points. I'm pretty sure the solution is perspective correct interpolation which I've glimpsed over for texture mapping, but I only have a line, not a triangle! Given two 3D points on the screen (normalized device coordinates) how do I correctly interpolate the depth value for any point on the line between the two given points? (Linear interpolation does not give the right value due to the 3D perspective.)

Myomyomyo.
Offline Danny02

JGO Knight


Medals: 36



« Reply #1 - Posted 2012-05-20 12:33:40 »

let say you figured out how to start dragging your object and now you know the line you want the object to move one (m) and the position of the mouse on screen(Pm).

Now you un-project the mouse position to a line in 3D space(l) (near&far clipping plane).

the next thing is to find the nearest point on (m) to (l), this is the new position of you object.
(to lazy to type Smiley hier an example how to do it ask if you have any questions)

Also beware to check if the movement vector has a very smal angle to the mouse vector or even parallel, because will cause problems.
Offline theagentd
« Reply #2 - Posted 2012-05-20 13:12:56 »

let say you figured out how to start dragging your object and now you know the line you want the object to move one (m) and the position of the mouse on screen(Pm).

Now you un-project the mouse position to a line in 3D space(l) (near&far clipping plane).

the next thing is to find the nearest point on (m) to (l), this is the new position of you object.
(to lazy to type Smiley hier an example how to do it ask if you have any questions)

Also beware to check if the movement vector has a very smal angle to the mouse vector or even parallel, because will cause problems.
That's exactly what I want to do, but don't I have to correctly interpolate the depth of the point in a specific way? =S

Myomyomyo.
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline Danny02

JGO Knight


Medals: 36



« Reply #3 - Posted 2012-05-20 13:15:35 »

nah I propose to do everything in 3D not in 2D as you explained, also I don't think that you have to snap to the axis

ps:
Quote
Finally I un-project this point back to world space, and I'll know exactly where the controller has been moved in 3D space.
you can not unproject a 2D point to a 3D point, you can only get a line in 3D space out of a 2D point. To get the correct Position in worldspace you have to check where the two lines(unprojected & movment axis) are intersecting.
If you want to do it your way. I think what I did is perhaps cleaner cause you aren'T doing that much conversation between spaces.
Offline Riven
« League of Dukes »

JGO Overlord


Medals: 438
Projects: 4


Hand over your head.


« Reply #4 - Posted 2012-05-20 15:02:30 »

how do I correctly interpolate the depth value for any point on the line between the two given points? (Linear interpolation does not give the right value due to the 3D perspective.)
Interpolate linearly in model space, not in screen space. persecutioncomplex

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Offline theagentd
« Reply #5 - Posted 2012-05-20 15:40:04 »



I hate them.

Coding like I'm on fire at the moment, gimme a second to test this crap... >___<

Myomyomyo.
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 (76 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (186 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.11 seconds with 20 queries.