Add some debug and util routines.

This commit is contained in:
wandererfan
2018-03-28 19:03:06 -04:00
committed by wmayer
parent 00f36d78e4
commit 5ccb7e7d37
5 changed files with 62 additions and 1 deletions

View File

@@ -75,6 +75,8 @@ class TechDrawExport DrawUtil {
Base::Vector3d org = Base::Vector3d(0.0,0.0,0.0));
static Base::Vector3d closestBasis(Base::Vector3d v);
static double getDefaultLineWeight(std::string s);
static Base::Vector3d vector23(const Base::Vector2d& v2) { return Base::Vector3d(v2.x,v2.y,0.0); }
static Base::Vector2d vector32(const Base::Vector3d& v3) { return Base::Vector2d(v3.x,v3.y); }