From b01bcc568fe740ffbed587c932c9114832c8a3c2 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 13:33:42 -0500 Subject: [PATCH] Fix badly-formatted indent --- src/noise_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/noise_math.h b/src/noise_math.h index b338d3f..eb3003d 100644 --- a/src/noise_math.h +++ b/src/noise_math.h @@ -18,6 +18,6 @@ constexpr float SmootherStep(const float x) { // If x <= 0 returns bound_0, if x >= 1 returns bound_1, // otherwise smoothly transitions between the two constexpr float Interpolate(const float x, const float bound_0, - const float bound_1) { + const float bound_1) { return bound_0 + SmootherStep(x) * (bound_1 - bound_0); }