LeviLamina
Loading...
Searching...
No Matches
SimplexNoise.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
8// auto generated forward declare list
9// clang-format off
10class IRandom;
11class Vec2;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 12, ::Vec3> mOrigin;
19 ::ll::TypedStorage<4, 2048, int[512]> mNoiseMap;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI SimplexNoise(::IRandom& random, bool parityInitialization);
30
31 MCNAPI float _getValue(::Vec2 const& vin) const;
32
33 MCNAPI float _getValue(::Vec3 const& vin) const;
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCNAPI void* $ctor(::IRandom& random, bool parityInitialization);
40 // NOLINTEND
41};
Definition IRandom.h:10
Definition SimplexNoise.h:14
MCAPI SimplexNoise(::IRandom &random, bool parityInitialization)
MCAPI float _getValue(::Vec3 const &vin) const
MCAPI void * $ctor(::IRandom &random, bool parityInitialization)
MCAPI float _getValue(::Vec2 const &vin) const
Definition Vec2.h:5
Definition Vec3.h:10