mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-11 14:43:34 +00:00
7 lines
181 B
C++
7 lines
181 B
C++
#include <Noise.h>
|
|
|
|
[[nodiscard]] std::uint32_t Noise::GetHeight(Scop::Vec2i pos)
|
|
{
|
|
return std::abs(std::sin((float)pos.x / 20.0f) * std::cos((float)pos.y / 20.0f) * 60.0f) + 1;
|
|
}
|