Kommentare und Einrückungen angepasst
This commit is contained in:
parent
359b7beef5
commit
3cc7a534d0
1 changed files with 11 additions and 13 deletions
|
@ -23,12 +23,10 @@ public:
|
|||
|
||||
// Konstruktor
|
||||
KV(PrimImplikantCollection* globalPic, CellCollection* allCells, uint size, vector<string>* &variables)
|
||||
: edgeLength(size), numVarX(((uint)floor(dimension / 2.0f))), numVarY(((uint)ceil(dimension / 2.0f))),
|
||||
: edgeLength(size),
|
||||
numVarX(((uint)floor(dimension / 2.0f))), numVarY(((uint)ceil(dimension / 2.0f))),
|
||||
numFieldX((uint)pow(2, (float)numVarX)), numFieldY((uint)pow(2, (float)numVarY))
|
||||
{
|
||||
|
||||
|
||||
|
||||
this->globalPic = globalPic;
|
||||
this->allCells = allCells;
|
||||
this->variables = variables;
|
||||
|
@ -58,7 +56,7 @@ private:
|
|||
uint VarX_Length; // Höhe der Variablen in X-Richtung in Pixeln
|
||||
uint VarY_Length; // Breite der Variablen in Y-Richtung in Pixeln
|
||||
string string_VarX; // Variables_String in X-Richtung
|
||||
string string_VarY; // Variables_String in Y_Richtung
|
||||
string string_VarY; // Variables_String in Y-Richtung
|
||||
|
||||
void Setstring_Var(); // Einfuegen von String_Varx & String_VarY mit Variables.
|
||||
void PrintRaster(); // Erstellt die Felder
|
||||
|
|
Loading…
Reference in a new issue