|
-
Oct 10th, 2004, 09:23 PM
#1
Thread Starter
Lively Member
Line Plotting and angles
I am working with line plotting in a form.
I need to find an angle between two lines AB,BC joined at B.
AB and BC lengths are not same.
I know (x,y) values of A,B and C.
How to find angle at B?
and also
I have Trignometric "TanA" value.
How to find angle 'A' ?
in VB code point, can some body help me?
-
Oct 12th, 2004, 03:21 AM
#2
-
Oct 12th, 2004, 04:58 AM
#3
The sandpaper library will have a derived math class in it. It will contain functions for all the derived math equations detailed in MSDN.
It has already been coded. Alpha Launch date: 01 Dec 04.
I don't live here any more.
-
Oct 12th, 2004, 06:55 AM
#4
Thread Starter
Lively Member
shifting line in coordinate system
I have a line with known x,y values. that is x1,y1 and x2,y2.
I need to shift that line with same slope and lenght to new point to x3,y3.
that is new line coordinates shall be x3,y3 and x4,y4.
how do I do it in VB point of view. any help pl.
Very Urgent.
-
Oct 19th, 2004, 12:43 PM
#5
Member
x3 - x1 = diffx
y3 - y1 = diffy
x4 = x2 + diffx
y4 = y2 + diffy
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|