Jump to content

Vector Distance Question


Recommended Posts

Guest Red Ocktober
Posted

how do i do this in BlitzMAX?

 

--Mike

Posted

distance betwen points :(

 

local v1:tvec3=vec3(1,2,3)
local v2:tvec3=vec3(4,5,6)

distance#=sqr( (v1.x-v2.x)^2 + (v1.y-v2.y)^2 + (v1.z-v2.z)^2 )

"Better" is big enemy of "good"

Guest Red Ocktober
Posted

THANKS... guys for both...

 

--Mike

Posted

..this one should be faster, in case many time in your loops is used..

 

local v1:tvec3=vec3(1,2,3)

local v2:tvec3=vec3(4,5,6)

 

distance!=sqr( ((v1.x-v2.x) * (v1.x-v2.x)) + ((v1.y-v2.y) * (v1.y-v2.y)) + ((v1.z-v2.z) * (v1.z-v2.z)) )

 

:)

 

Posted

One my friend say me to compare squares, not distances, because SQR is heavy command. So

 

dist1#=(v1.x-v2.x) * (v1.x-v2.x) + (v1.y-v2.y) * (v1.y-v2.y) + (v1.z-v2.z) * (v1.z-v2.z)

dist2#=(v1.x-v3.x) * (v1.x-v3.x) + (v1.y-v3.y) * (v1.y-v3.y) + (v1.z-v3.z) * (v1.z-v3.z)

 

if dist1<dist2 ....

 

Without SQR calcilations :)

 

P.S. Cool glasses Alien :)

"Better" is big enemy of "good"

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...