Distance-func
This function is used to return the distance with two points.
double Distance(double px1, double py1, double px2, double py2)
px1
py1
px2
py2
Return the distance.
double ff=distance(1,1,3,3); ff=; //Should return 2.8284271247462.
Distance3D