removed surf layer

This commit is contained in:
Raphael Maenle
2018-01-29 20:25:33 +01:00
parent 9f876e5c34
commit 564053797a
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#pragma once
//TODO!! increase Destructioncount
#define DESTRUCTION_COUNT 3
#define DESTRUCTION_COUNT 2
#include "DestructionPower_Properties.h"
#include "../AbstraktionLayer_Base.h"

View File

@ -177,7 +177,7 @@ bool AbstractionLayer_ColorMatching::EvaluateQuality (const coor constraintCoord
float value3 = (float)(1-(abs(m_constraintMatrix[constraintCoordinate.col][constraintCoordinate.row].m_centerColor.v-qVector[i].second->m_acm.m_centerColor.v))/255);
qVector[i].first = (value1*4+value2*2+value3*1)/6;
qVector[i].first = (value1*2+value2*2+value3*2)/6;
}
}