From: abv Date: Wed, 10 Jul 2019 18:45:45 +0000 (+0300) Subject: 0029736: Some Warnings During Compound Transfer to IGES Look Dubious X-Git-Tag: V7_4_0_beta~83 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=bc28da5c3a87633090a4fa591b7a183d8b6b0f85;p=occt-copy.git 0029736: Some Warnings During Compound Transfer to IGES Look Dubious Incorrect (legacy) warnings during IGES export are removed --- diff --git a/src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx b/src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx index c95525f2e5..48c365ccd5 100644 --- a/src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx +++ b/src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx @@ -845,7 +845,6 @@ Handle(IGESData_IGESEntity) BRepToIGESBRep_Entity::TransferCompound (const TopoD // take all isolated Wires for (Ex.Init(start, TopAbs_WIRE, TopAbs_FACE); Ex.More(); Ex.Next()) { TopoDS_Wire S = TopoDS::Wire(Ex.Current()); - AddWarning(S," a Wire alone is not an IGESBRep entity : no Transfer"); BRepToIGES_BRWire BW(*this); BW.SetModel(GetModel()); @@ -857,7 +856,6 @@ Handle(IGESData_IGESEntity) BRepToIGESBRep_Entity::TransferCompound (const TopoD // take all isolated Edges for (Ex.Init(start, TopAbs_EDGE, TopAbs_WIRE); Ex.More(); Ex.Next()) { TopoDS_Edge S = TopoDS::Edge(Ex.Current()); - AddWarning(S," a Edge alone is not an IGESBRep entity : no Transfer"); BRepToIGES_BRWire BW(*this); BW.SetModel(GetModel()); @@ -869,7 +867,6 @@ Handle(IGESData_IGESEntity) BRepToIGESBRep_Entity::TransferCompound (const TopoD // take all isolated Vertices for (Ex.Init(start, TopAbs_VERTEX, TopAbs_EDGE); Ex.More(); Ex.Next()) { TopoDS_Vertex S = TopoDS::Vertex(Ex.Current()); - AddWarning(S," a Vertex alone is not an IGESBRep entity : no Transfer"); BRepToIGES_BRWire BW(*this); BW.SetModel(GetModel());