LeviLamina
Loading...
Searching...
No Matches
Bounds.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/Pos.h"
7
8struct Bounds {
9public:
10 // Bounds inner types declare
11 // clang-format off
12 struct Iterator;
13 // clang-format on
14
15 // Bounds inner types define
16 struct Iterator {
17 public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25 public:
26 // prevent constructor by default
27 Iterator& operator=(Iterator const&);
28 Iterator(Iterator const&);
29 Iterator();
30 };
31
32 enum class Option : int {
33 Default = 0,
34 Flatten = 1,
35 };
36
37public:
38 // member variables
39 // NOLINTBEGIN
40 ::ll::TypedStorage<4, 12, ::Pos> mMin;
41 ::ll::TypedStorage<4, 12, ::Pos> mMax;
42 ::ll::TypedStorage<4, 12, ::Pos> mDim;
43 ::ll::TypedStorage<4, 4, int> mArea;
44 ::ll::TypedStorage<4, 4, int> mVolume;
45 ::ll::TypedStorage<4, 4, int> mSide;
46 // NOLINTEND
47};
Definition Option.h:17
Definition Bounds.h:16
Definition Bounds.h:8
Definition Alias.h:14