From: bugmaster <> Date: Thu, 19 May 2011 10:45:45 +0000 (+0000) Subject: OCC22294 Problem with reading of attached file with OCCT642 X-Git-Tag: V6_5_1~27 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=20ee680fafbc9f5f0846c0067634609415839bba;p=occt-copy.git OCC22294 Problem with reading of attached file with OCCT642 --- diff --git a/src/IGESToBRep/IGESToBRep_TopoCurve.cxx b/src/IGESToBRep/IGESToBRep_TopoCurve.cxx index 6d2ef02fc5..652cab03f9 100755 --- a/src/IGESToBRep/IGESToBRep_TopoCurve.cxx +++ b/src/IGESToBRep/IGESToBRep_TopoCurve.cxx @@ -98,7 +98,6 @@ #include #include #include -#include //======================================================================= //function : IGESToBRep_TopoCurve @@ -1014,13 +1013,8 @@ TopoDS_Shape IGESToBRep_TopoCurve::TransferTopoBasicCurve SetEpsilon(1.E-04); if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(),start->CompoundLocation(),T, GetUnitFactor())) { - //TopLoc_Location L(T); - BRepBuilderAPI_Transform trf(T); - trf.Perform(myshape); - if (trf.IsDone()){ - myshape = trf.Shape(); - } - //myshape.Move(L); + TopLoc_Location L(T); + myshape.Move(L); } else { Message_Msg Msg1035("IGES_1035");