kubabuk Posted April 15, 2005 Share Posted April 15, 2005 How can I get distance between two points - I experimented with the measure OP but sincerely I have no idea how to use it - docs explenation are so dim - thanks for any advice kuba Quote Link to comment Share on other sites More sharing options...
sibarrick Posted April 15, 2005 Share Posted April 15, 2005 Try the distance function. float distance (float x1, float y1, float z1, float x2, float y2, float z2) Returns sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2), the distance between the given points. See also: pointdist See also: uvdist Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.