Fix badly-formatted indent
All checks were successful
Build / Format (push) Successful in 20s
Build / Lint (push) Successful in 1m42s
Build / Build (push) Successful in 38s

This commit is contained in:
Michael Bradley 2025-02-23 13:33:42 -05:00
parent 92b604fac3
commit b01bcc568f
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -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);
}