Flash actionscript 3.0: Distance Between 2 points in AS3.0

Distance Between 2 points in AS3.0

Posted by Sankar.G | Posted in | Posted on 10:40 PM

Distance Between point A and B formula is
dx=point1.x-point2.x;
dy=point1.y-point1.y;
distance=Sqrt(dx*dx+dy*dy);
Below files is used to you to find the Distance Between
2 Points

distance.zip


distance.swf

Comments (0)