LeviLamina
Loading...
Searching...
No Matches
VoronoiZoomMultiNoise.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
9class Vec3;
10// clang-format on
11
12namespace VoronoiZoomMultiNoise {
13// functions
14// NOLINTBEGIN
15MCNAPI ::Vec3 getGridOffset(::SimplePositionalRandomFactory const& positionalRandom, ::BlockPos worldPos);
16
17MCNAPI uint getZoomedVoronoiCellIndex(
18 ::BlockPos inPos,
19 ::std::vector<::Vec3> const& voronoiCellOffsets,
20 uint minCellIndex,
21 uint bufferXZSize,
22 uint bufferYSize
23);
24// NOLINTEND
25
26} // namespace VoronoiZoomMultiNoise
Definition BlockPos.h:17
Definition SimplePositionalRandomFactory.h:14
Definition Vec3.h:10