From 841b4fab1b6ba96ae63fa728dd703bbb7303edd4 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 23 Jul 2014 13:49:16 +0200 Subject: [PATCH] + fixes #0001630: IGES-Export in [mm] turns to [Inches] --- src/Mod/Part/App/TopoShape.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Mod/Part/App/TopoShape.cpp b/src/Mod/Part/App/TopoShape.cpp index eb234a1acdd7..c36ae81d6747 100644 --- a/src/Mod/Part/App/TopoShape.cpp +++ b/src/Mod/Part/App/TopoShape.cpp @@ -690,12 +690,10 @@ void TopoShape::write(const char *FileName) const void TopoShape::exportIges(const char *filename) const { - Interface_Static::SetCVal("write.iges.unit","IN"); try { // write iges file IGESControl_Controller::Init(); IGESControl_Writer aWriter; - //IGESControl_Writer aWriter(Interface_Static::CVal("write.iges.unit"), 1); aWriter.AddShape(this->_Shape); aWriter.ComputeModel(); QString fn = QString::fromUtf8(filename);