vec2_dist wrong named

This commit is contained in:
luc 2019-04-12 01:19:47 +02:00
parent ae258447a5
commit 0afc2dcb61

View File

@ -171,7 +171,7 @@ vec4_square_norm (vec4 v)
}
float
vect2_dist (vec2 a, vec2 b)
vec2_dist (vec2 a, vec2 b)
{
float dx = a.x - b.x;
float dy = a.y - b.y;