Skip to content
Snippets Groups Projects
Commit da1e2897 authored by Ulrich Kemloh's avatar Ulrich Kemloh
Browse files

proper scaling of the labels and relaxed checks while parsing the geometry....

proper scaling of the labels and relaxed checks  while parsing the geometry. Meaning some geometry will be displayed even if there were errors, the simulation will not run though. This eases debugging.
parent 5e4e657e
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@
#define CLENGTH 1000
// conversion (cm <-> m)
#define FAKTOR 1
#define FAKTOR 100
// default final destination for the pedestrians
#define FINAL_DEST_OUT -1
......
......@@ -849,7 +849,7 @@ bool NormalSubRoom::ConvertLineToPoly(const vector<Line*>& goals)
if(IsPartOfPolygon(ptw)==false)
{
Log->Write("ERROR:\t Wall was not used during polygon creation for subroom: %s",w.toString().c_str());
return false;
//return false;
}
}
}
......@@ -862,7 +862,7 @@ bool NormalSubRoom::ConvertLineToPoly(const vector<Line*>& goals)
if(IsPartOfPolygon(ptw)==false)
{
Log->Write("ERROR:\t goal was not used during polygon creation for subroom: %s",g->toString().c_str());
return false;
//return false;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment