add test biomes

This commit is contained in:
MihailRis
2024-08-19 20:11:55 +03:00
parent 4bd5f1b629
commit 572eaec429
5 changed files with 99 additions and 5 deletions
+8
View File
@@ -37,6 +37,14 @@ public:
return height;
}
float get(uint x, uint y) {
return buffer.at(y * width + x);
}
float getUnchecked(uint x, uint y) {
return buffer[y * width + x];
}
float* getValues() {
return buffer.data();
}