amain Posted March 3, 2006 Share Posted March 3, 2006 Can someone give coding for calculate the distance between two points? The points is set by user. Quote Link to comment Share on other sites More sharing options...
ccl Posted March 9, 2006 Share Posted March 9, 2006 This is pseudo code:var a = math.abs((pointA.x -pointB.x) * (pointA.x - pointB.x));var b = math.abs((pointA.y -pointB.y) * (pointA.x - pointB.y));var h = a + b;var distance = math.sqrt(h); Quote Link to comment Share on other sites More sharing options...
amain Posted March 22, 2006 Author Share Posted March 22, 2006 Thank eor...I want the coding for upload the image to the folder...Can somebody help me?If you can eor,please help me 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.