diff --git a/src/typed-geometry/detail/noise/perlin.hh b/src/typed-geometry/detail/noise/perlin.hh index f17ab65d95526c95f7f41370c31a072ef6b59ed4..3c35e5911b2c3a6fcf9ef68224e9e5926d8c44eb 100644 --- a/src/typed-geometry/detail/noise/perlin.hh +++ b/src/typed-geometry/detail/noise/perlin.hh @@ -1,7 +1,7 @@ #pragma once #include <typed-geometry/detail/noise_helper.hh> -#include <typed-geometry/functions/mix.hh> +#include <typed-geometry/functions/basic/mix.hh> namespace tg { diff --git a/src/typed-geometry/detail/noise/simplex.hh b/src/typed-geometry/detail/noise/simplex.hh index 2edc20f121adb9dc1d0a7dab85d67b7e3a42100f..9e3b2a91321d61a655a2c53e0fb3577376b9c4c4 100644 --- a/src/typed-geometry/detail/noise/simplex.hh +++ b/src/typed-geometry/detail/noise/simplex.hh @@ -1,7 +1,7 @@ #pragma once #include <typed-geometry/detail/noise_helper.hh> -#include <typed-geometry/common/scalar_math.hh> // clamp(ScalarT, ..) +#include <typed-geometry/functions/basic/scalar_math.hh> // clamp(ScalarT, ..) namespace tg {