add test biomes
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user