Fix XAxis orientation

Remove need for XAxisDirection property
This commit is contained in:
WandererFan
2016-10-15 19:50:42 -04:00
committed by Yorik van Havre
parent ecc9be4f23
commit 4a9778e230
3 changed files with 21 additions and 8 deletions

View File

@@ -197,4 +197,8 @@ void DrawUtil::dumpEdge(char* label, int i, TopoDS_Edge e)
Base::Console().Message("%s edge:%d start:(%.3f,%.3f,%.3f) end:(%.2f,%.3f,%.3f)\n",label,i,
vStart.X(),vStart.Y(),vStart.Z(),vEnd.X(),vEnd.Y(),vEnd.Z());
}
const char* DrawUtil::printBool(bool b)
{
return (b ? "True" : "False");
}
//==================================