Fix XAxis orientation

Remove need for XAxisDirection property
This commit is contained in:
WandererFan
2016-10-31 11:06:15 -02:00
committed by Yorik van Havre
parent 2f6a779205
commit ce9f4f199a
3 changed files with 21 additions and 8 deletions
+4
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");
}
//==================================