From 0afc2dcb61c67ad1715a768eb18de5ffa11315d3 Mon Sep 17 00:00:00 2001 From: luc Date: Fri, 12 Apr 2019 01:19:47 +0200 Subject: [PATCH] vec2_dist wrong named --- sweet_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sweet_math.c b/sweet_math.c index 9b652f9..4b71325 100755 --- a/sweet_math.c +++ b/sweet_math.c @@ -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;