Converting between coordinate planes

  • Thread starter Thread starter Jripe
  • Start date Start date
  • Tags Tags
    Coordinate Planes
AI Thread Summary
To convert from a Cartesian coordinate plane to one where the origin is at the top left corner, the coordinates need to be adjusted accordingly. The discussion revolves around an object within a nested screen setup, where mouse coordinates are based on a smaller screen starting at (0,0). The challenge is to calculate the mouse's position relative to the larger screen, considering the different origins. Suggestions include shifting the coordinate axes and adjusting points based on screen dimensions. The conversation highlights the complexity of this conversion, particularly with the directional values for movement.
Jripe
Messages
8
Reaction score
0
How would you go about converting from a Cartesian coordinate plane to one where (0,0) is in the top left hand corner?
 
Physics news on Phys.org
Jripe said:
How would you go about converting from a Cartesian coordinate plane to one where (0,0) is in the top left hand corner?

What do you mean by the origin being in the top left hand corner?
 
Like this:
30ms3k2.gif
 

Attachments

  • 30ms3k2.gif
    30ms3k2.gif
    2.6 KB · Views: 462
It's still pretty much the same cartesian plane, I guess it's just resized because for whatever purpose that is needed for only requires the fourth quadrant.
 
Ok.. maybe I should have put my question a bit better, with a bit more info on what I need this for.

What I have is an object, inside a screen, that is inside another screen. The object can move, and the screen inside the screen is partially-fixed onto the object. If I move the mouse to the left, the screen will follow it to the left, up until the object is on the very right side of the screen which stops it from moving further.

The objects coordinates are based on the large screens origin, and my mouse coordinates are based on the smaller screens plane, which starts in the top left 0,0.

What I am trying to do is to get the mouses coordinates relative to the larger screen.
 
Jripe said:
Ok.. maybe I should have put my question a bit better, with a bit more info on what I need this for.

What I have is an object, inside a screen, that is inside another screen. The object can move, and the screen inside the screen is partially-fixed onto the object. If I move the mouse to the left, the screen will follow it to the left, up until the object is on the very right side of the screen which stops it from moving further.

The objects coordinates are based on the large screens origin, and my mouse coordinates are based on the smaller screens plane, which starts in the top left 0,0.

What I am trying to do is to get the mouses coordinates relative to the larger screen.

I guess you could shift the coordinate axes of the upper left coordinate point to be (0,0) and adjust all other points accordingly.
 
OP,
Have you got any ideas on how you could accomplish this?
 
I'm getting there. I started off by thinking that if the mouse was at say, (0,0) then it would be a whole screen distance up and to the left so I would say distance x = Screen size - 0 and distance y = Screen size - 0 up until half of the screen. I realize now that this would only work at the maximums (I think) because as you go towards the middle you would be getting half the screen size, which isn't what I want.

I am about to go to bed, so I will give this a bit of thought while going to sleep and then continue on tommorow.

Oh, one other thing I forgot to mention is that up is -ve and down is +ve, right is +ve and left is -ve for the objects coordinates relative to the large screen.

After a little bit of brainstorming, maybe the distance from the middle of the screen. I'm done. Bed.
 
Last edited:
Back
Top