LeviLamina
Loading...
Searching...
No Matches
PerlinNoiseDensityCalculator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/world/level/levelgen/density/calculators/IDensityCalculator.h"
8#include "mc/world/level/levelgen/synth/PerlinNoise.h"
9
10// auto generated forward declare list
11// clang-format off
14class DensityVolume;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 40, ::PerlinNoise const> mNoise;
22 ::ll::TypedStorage<4, 12, ::Vec3 const> mScale;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~PerlinNoiseDensityCalculator() /*override*/ = default;
29
30 virtual void fill(::DensityVolume&, ::DensityAllocator&, ::DensityCalculators const&) const /*override*/;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
Definition DensityAllocator.h:10
Definition DensityCalculators.h:10
Definition DensityVolume.h:13
Definition IDensityCalculator.h:12
Definition PerlinNoiseDensityCalculator.h:17