vote up -2 vote down star
1

Hi All,

In 2D plane, I have 2 line segments line1 (x1, y1) (x2, y2), and line2 (a1 b1) (a2 b2). Is it possible to find out the relation between these two lines and then use that relation to draw a new set of lines? For example, I know coordinates of line1 and line2 both, to find out the relationship. And when I change the coordinates of line1, then line2 should automatically change according to the relationship.

Thanks and Cheers.

flag

1  
You should show some code, so we know what you're talking about. what do you mean by relation? You have two lines, if one translates or rotates you want the other to follow? – GMan Oct 28 at 6:46
What kind of relationship you are talking about? Their gradient? Or their distance? Or? – Ngu Soon Hui Oct 28 at 6:47
do you mean, that a rotation applied to line 1 should also be applied to line , and ditto for a translation? You didn't exactly specify what you mean by their relation... distance? relative angles? – Jonathan Fingland Oct 28 at 6:47
Zinx, you must be more specific or else this question is in danger of being closed as "not a real question." The only question you've really asked is "Is it possible?" The answer is yes, but that doesn't really help you at all. What kind of relation do you want, and which part of the programming task is giving you trouble? – Rob Kennedy Oct 28 at 6:51
Ok, the relation means a relative positions and location. Which means line1 has some relative position and location to line2. So, my question was, what can I do to get this relative position? So that if I change coordinates of line1, then line2 should update automatically because of its relative position to line1. – Zinx Oct 28 at 10:06
show 1 more comment

closed as not a real question by Ngu Soon Hui, DigitalRoss, avakar, Jonathan Fingland, Sinan Ünür Oct 29 at 21:14

2 Answers

vote up 1 vote down check

Short answer: Yes

The area of maths that you want to look into is linear transformations. What do I mean by a linear transformation? Well when it comes to a line you can think of a linear transformation as being a combination of:

  • A rotation
  • A tranlation (i.e. moving the line)
  • A scaling (i.e. making the line shorter or longer)

Using a combination of the above 3 it is possible to take any line and convert into into any other line.

In this case you want to fine the linear transformation such that applying that transformation to line 1 will give you line 2. Once you know what that is you can change line 1, and then simply reapply the transformation to get the relative line 2 again.

You can also draw another arbitrary line (call it line 3) and apply the transformation to that line to get another line (line 4) which will be "related" to line 3 in a similar way that line 2 is to line 1.

I dont want to go into this too much (because it can get relatively complicated depending on how much maths you know) but another area of maths to look into is matrices, and in particular how matrices can be used to represent linear transformations.

link|flag
vote up 1 vote down

It sounds like your lines define an object together. I don't think it relates much to the programming language (like c++), but more to the way you handle graphics. Lines and dots are the lowest primitive; objects are a logical next step.

By separating graphical objects (whether 2D or 3D) from camera and environment, you can move/rotate objects without altering each line. Each object has positions (xyz) and rotation relative to the object center point (or whatever origin you take) and each object has a position in the environment/universe. For 3D it is also useful to have a camera position/rotation; for 2D it is useful to define the viewport you want to look at with rotation.

This way lines become related.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.