1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

OCC22294 Problem with reading of attached file with OCCT642

This commit is contained in:
bugmaster 2011-05-19 10:45:45 +00:00 committed by bugmaster
parent 0fc4f2e2ae
commit 20ee680faf

View File

@ -98,7 +98,6 @@
#include <IGESToBRep.hxx>
#include <IGESToBRep_AlgoContainer.hxx>
#include <IGESToBRep_ToolContainer.hxx>
#include <BRepBuilderAPI_Transform.hxx>
//=======================================================================
//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");