From d6d742f8a24490f885e4a1ae3fea7ec46b01f58c Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:54:52 +1100 Subject: chore: format --- src/maths.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/maths.c') diff --git a/src/maths.c b/src/maths.c index 10fa9e0..c1fab2a 100644 --- a/src/maths.c +++ b/src/maths.c @@ -2,9 +2,7 @@ vec3 vec3_create(f32 x, f32 y, f32 z) { return (vec3){ x, y, z }; } -vec3 vec3_add(vec3 u, vec3 v) { - return (vec3){ .x = u.x + v.x, .y = u.y + v.y, .z = u.z + v.z }; -} +vec3 vec3_add(vec3 u, vec3 v) { return (vec3){ .x = u.x + v.x, .y = u.y + v.y, .z = u.z + v.z }; } vec4 vec4_create(f32 x, f32 y, f32 z, f32 w) { return (vec4){ x, y, z, w }; } -- cgit v1.2.3-70-g09d2