A math question - a tough one
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2007-02-18 12:15 PM
2007-02-18
12:15 PM
X1,Y1 known
X2,Y2 known
D known
X3,Y3 ???
thanks
::rk
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2007-02-18 01:09 PM
2007-02-18
01:09 PM
It's not very clear what you are trying to do... what do you mena by "vector translations"... do you mean ROT2?
Tom Waltz
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2007-02-18 04:14 PM
2007-02-18
04:14 PM
It's fairly simple if I understand correctly. You can get the distance (let's call it "D1") between the known points and use the proportion.
D1 = SQR((X2-X1)^2 + (Y2-Y1)^2) ! per Pythagoras ! since (X3-X1)/(X2-X1) = D/D1 then it follows that... X3 = (D/D1)*(X2-X1) + X1 ! and... Y3 = (D/D1)*(Y2-Y1) + Y1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2007-02-18 10:27 PM
2007-02-18
10:27 PM
Matthew, you have nailed it down! that's exactly what I was after...I knew I am very close but I just could not think of that last step... perfect
thanks very much.
thanks very much.
::rk