Luna::distance
f32 distance(const Float4 &v1, const Float4 &v2)
Computes the distance between two points.
This function performs the following operations:
[f32](group___runtime_base_type_1gad34d88453d37b65a09797bad37f2f527.md) dx = v1.x - v2.x;
[f32](group___runtime_base_type_1gad34d88453d37b65a09797bad37f2f527.md) dy = v1.y - v2.y;
[f32](group___runtime_base_type_1gad34d88453d37b65a09797bad37f2f527.md) dz = v1.z - v2.z;
[f32](group___runtime_base_type_1gad34d88453d37b65a09797bad37f2f527.md) dw = v1.w - v2.w;
return sqrt(dx * dx + dy * dy + dz * dz + dw * dw);
Parameters
-
in v1
The first point.
-
in v2
The second point.
Return value
Returns the distance between two points.