Answers for "c# get distance between two points"

C#
1

c# get distance

//For Unity C#
float GetDistance(Vector2 posA, Vector2 posB) {
	float dx = posA.x - posB.x;
    float dy = posA.y - posB.y;
    float distance = Mathf.Sqrt(dx * dx + dy * dy);
    return distance;
}
Posted by: Guest on February-07-2021
0

distance between two points latitude longitude c#

float DeltaFi = (float)ConvertToRadians(lat2 - lat1);
float DeltaLambda = (float)ConvertToRadians(lon2 - lon1);
float a = Mathf.Sin(DeltaFi / 2) * Mathf.Sin(DeltaFi / 2) + Mathf.Cos(fi1) * Mathf.Cos(fi2) * Mathf.Sin(DeltaLambda / 2) * Mathf.Sin(DeltaLambda / 2);
float c = 2 * Mathf.Atan2(Mathf.Sqrt(a), Mathf.Sqrt(1 - a));
float distance = earthD * c;
Posted by: Guest on March-05-2020

Code answers related to "c# get distance between two points"

C# Answers by Framework

Browse Popular Code Answers by Language