QtSculptor  v1.0.0
Voxel.h
Go to the documentation of this file.
1 #ifndef VOXEL
2 #define VOXEL
3 
9 struct Voxel {
10  float r;
11  float g;
12  float b;
13  float a;
14  bool isOn = false;
15 };
16 
17 #endif // VOXEL
Voxel
Struct Voxel (volume element) used to store properties of the elements that will constitute the creat...
Definition: Voxel.h:9
Voxel::b
float b
Definition: Voxel.h:12
Voxel::r
float r
Definition: Voxel.h:10
Voxel::a
float a
Definition: Voxel.h:13
Voxel::isOn
bool isOn
Definition: Voxel.h:14
Voxel::g
float g
Definition: Voxel.h:11