Sculptor  v2.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;
15 };
16 
17 #endif // VOXEL
Struct Voxel (volume element) utilizada para armazenar propriedades dos elementos que constituirĂ¡ a e...
Definition: voxel.h:9
float r
Definition: voxel.h:10
float g
Definition: voxel.h:11
float a
Definition: voxel.h:13
float b
Definition: voxel.h:12
bool isOn
Definition: voxel.h:14