mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 11:07:52 +02:00
CR feedback
This commit is contained in:
parent
bdabe709af
commit
92f6fe6bd8
1 changed files with 9 additions and 8 deletions
|
@ -863,14 +863,15 @@ void VoxelSystem::falseColorizeBySource() {
|
||||||
const int NUMBER_OF_COLOR_GROUPS = 6;
|
const int NUMBER_OF_COLOR_GROUPS = 6;
|
||||||
const unsigned char MIN_COLOR = 128;
|
const unsigned char MIN_COLOR = 128;
|
||||||
int voxelServerCount = 0;
|
int voxelServerCount = 0;
|
||||||
groupColor groupColors[NUMBER_OF_COLOR_GROUPS] = { groupColor(255, 0, 0),
|
groupColor groupColors[NUMBER_OF_COLOR_GROUPS] = {
|
||||||
groupColor( 0, 255, 0),
|
groupColor(255, 0, 0),
|
||||||
groupColor( 0, 0, 255),
|
groupColor( 0, 255, 0),
|
||||||
groupColor(255, 0, 255),
|
groupColor( 0, 0, 255),
|
||||||
groupColor( 0, 255, 255),
|
groupColor(255, 0, 255),
|
||||||
groupColor(255, 255, 255)
|
groupColor( 0, 255, 255),
|
||||||
};
|
groupColor(255, 255, 255)
|
||||||
|
};
|
||||||
|
|
||||||
// create a bunch of colors we'll use during colorization
|
// create a bunch of colors we'll use during colorization
|
||||||
NodeList* nodeList = NodeList::getInstance();
|
NodeList* nodeList = NodeList::getInstance();
|
||||||
for (NodeList::iterator node = nodeList->begin(); node != nodeList->end(); node++) {
|
for (NodeList::iterator node = nodeList->begin(); node != nodeList->end(); node++) {
|
||||||
|
|
Loading…
Reference in a new issue