dist();
Calculates the distance between 2 points in 2D or 3D space.
dist(x1, y1, x2, y2);
Arguments
x1
The x coordinate of the first pointy1
The y coordinate of the first pointx2
The x coordinate of the second pointy2
The y coordinate of the second pointlocal d = dist(0, 0, 3, 4);
print(d) -- 5
dist(x1, y1, z1, x2, y2, z2);
Arguments
x1
The x coordinate of the first pointy1
The y coordinate of the first pointz1
The z coordinate of the first pointx2
The x coordinate of the second pointy2
The y coordinate of the second pointz2
The z coordinate of the second pointlocal d = dist(0, 0, 0, 2, 3, 6);
print(d) -- 7
dist(v1, v2);
Arguments
v1
The first vectorv2
The second vectorlocal a = createVector(-1, -1);
local b = createVector( 2, 3);
local d = dist(a, b);
print(d) -- 5
Returns
number
The distance between the points