|
-
May 24th, 2002, 02:07 PM
#1
Thread Starter
Lively Member
Line length
How to Get ( during runtime) the lenght of a line drwan between two points
A (x,y) and B (x1,y1).
-
May 24th, 2002, 02:09 PM
#2
line control?
if you've taken pre pre pre algebra you should be able to find the length of a line by having the coordinates of its end points
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
May 24th, 2002, 02:10 PM
#3
Fanatic Member
deja vu
"I have not failed. I've just found 10,000 ways that won't work."
'Thomas Edison'
"If we knew what it was we were doing it wouldn't be called research, would it?"
'Albert Einstein'
VB6
-
May 24th, 2002, 02:12 PM
#4
VB Code:
dim iLen as Integer
iLen = Abs(((Y1-Y2)^2)+((X1-X2)^2)) 'formula, posted b4 by SLH
MsgBox iLen
-
May 24th, 2002, 02:17 PM
#5
Fanatic Member
VB Code:
dim iLen as Integer
iLen = Abs(((Y1-Y2)^2)+((X1-X2)^2)) [B]^ 0.5[/B] 'formula, posted b4 by SLH
MsgBox iLen
"I have not failed. I've just found 10,000 ways that won't work."
'Thomas Edison'
"If we knew what it was we were doing it wouldn't be called research, would it?"
'Albert Einstein'
VB6
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
|