+ 1
How to make an application in C# which measures distance between two points?
In C# language to make an application for measuring the distance between two points.
2 Respostas
0
using Pythagorean theorem
0
using the following formula:
Sqrt((x2-x1)^2 + (y2-y1)^2)
which is the euclidian distance