add 'heights-interpolation', 'biomes-interpolation'

This commit is contained in:
MihailRis
2024-10-28 09:22:02 +03:00
parent 99d9533453
commit d8c3940451
5 changed files with 33 additions and 3 deletions
+11
View File
@@ -5,6 +5,17 @@
#include <stdexcept>
#include <glm/glm.hpp>
std::optional<InterpolationType> InterpolationType_from(std::string_view str) {
if (str == "nearest") {
return InterpolationType::NEAREST;
} else if (str == "linear") {
return InterpolationType::LINEAR;
} else if (str == "cubic") {
return InterpolationType::CUBIC;
}
return std::nullopt;
}
static inline float sample_at(
const float* buffer,
uint width,