From d0de60dc33df75fbcacb53a09568b14d0fd48cb9 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 12 Jun 2023 17:09:55 +0200 Subject: Multithreaded world generation with Perlin --- src/World/Generator.hpp | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/World/Generator.hpp') diff --git a/src/World/Generator.hpp b/src/World/Generator.hpp index f184ff9..afe43c6 100644 --- a/src/World/Generator.hpp +++ b/src/World/Generator.hpp @@ -9,24 +9,7 @@ namespace MC::World { class Generator { public: Generator() = default; - Chunk generate(int64_t chunk_x, int64_t chunk_y); - -private: - Matrix ocean_weights_pass( - int64_t chunk_x, int64_t chunk_y - ); - Matrix> biome_weights_pass( - int64_t chunk_x, int64_t chunk_y, - Matrix ocean_weight - ); - Matrix height_pass( - int64_t chunk_x, int64_t chunk_y, - Matrix> biome_weights - ); - Matrix flat_biome_pass( - Matrix> biome_weights - ); }; } -- cgit 1.4.1