mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 18:18:02 +02:00
cleanup
This commit is contained in:
parent
c7e3fe5ef6
commit
93a8e1782d
1 changed files with 1 additions and 5 deletions
|
@ -808,19 +808,15 @@ void VoxelSystem::falseColorizeInView(ViewFrustum* viewFrustum) {
|
||||||
setupNewVoxelsForDrawing();
|
setupNewVoxelsForDrawing();
|
||||||
}
|
}
|
||||||
|
|
||||||
// combines the removeOutOfView args into a single class
|
// helper classes and args for falseColorizeBySource
|
||||||
class groupColor {
|
class groupColor {
|
||||||
public:
|
public:
|
||||||
unsigned char red, green, blue;
|
unsigned char red, green, blue;
|
||||||
groupColor(unsigned char red, unsigned char green, unsigned char blue) :
|
groupColor(unsigned char red, unsigned char green, unsigned char blue) :
|
||||||
red(red), green(green), blue(blue) { };
|
red(red), green(green), blue(blue) { };
|
||||||
|
|
||||||
groupColor(const groupColor& color) :
|
|
||||||
red(color.red), green(color.green), blue(color.blue) { };
|
|
||||||
|
|
||||||
groupColor() :
|
groupColor() :
|
||||||
red(0), green(0), blue(0) { };
|
red(0), green(0), blue(0) { };
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class colorizeBySourceArgs {
|
class colorizeBySourceArgs {
|
||||||
|
|
Loading…
Reference in a new issue