From 2a0420be1dd0f61e90275ce239881facee517418 Mon Sep 17 00:00:00 2001 From: ichesnok Date: Thu, 23 Mar 2023 09:54:10 +0000 Subject: [PATCH] 0032681: Data Exchange - Missed dimension after STEP export Changed level of detalisation (TopAbs_EDGE -> TopAbs_VERTEX by default) --- src/IGESControl/IGESControl_ActorWrite.cxx | 2 +- src/IGESControl/IGESControl_Writer.cxx | 2 +- src/IGESToBRep/IGESToBRep_Actor.cxx | 2 +- src/IGESToBRep/IGESToBRep_Reader.cxx | 2 +- src/XSAlgo/XSAlgo_AlgoContainer.cxx | 10 ++++---- src/XSAlgo/XSAlgo_AlgoContainer.hxx | 11 +++++---- tests/bugs/step/bug32681 | 27 ++++++++++++++++++++++ 7 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 tests/bugs/step/bug32681 diff --git a/src/IGESControl/IGESControl_ActorWrite.cxx b/src/IGESControl/IGESControl_ActorWrite.cxx index 98a187746a..de6ca78fcb 100644 --- a/src/IGESControl/IGESControl_ActorWrite.cxx +++ b/src/IGESControl/IGESControl_ActorWrite.cxx @@ -73,7 +73,7 @@ Handle(Transfer_Binder) IGESControl_ActorWrite::Transfer shape = XSAlgo::AlgoContainer()->ProcessShape( shape, Tol, maxTol, "write.iges.resource.name", "write.iges.sequence", info, - theProgress ); + theProgress, false, TopAbs_EDGE); // modified by NIZHNY-EAP Tue Aug 29 11:17:01 2000 ___END___ BRepToIGES_BREntity BR0; BR0.SetModel(modl); BR0.SetTransferProcess(FP); diff --git a/src/IGESControl/IGESControl_Writer.cxx b/src/IGESControl/IGESControl_Writer.cxx index b22ec97e11..f1608adede 100644 --- a/src/IGESControl/IGESControl_Writer.cxx +++ b/src/IGESControl/IGESControl_Writer.cxx @@ -92,7 +92,7 @@ Standard_Boolean IGESControl_Writer::AddShape (const TopoDS_Shape& theShape, TopoDS_Shape Shape = XSAlgo::AlgoContainer()->ProcessShape( theShape, Tol, maxTol, "write.iges.resource.name", "write.iges.sequence", info, - aPS.Next()); + aPS.Next(), false, TopAbs_EDGE); if (!aPS.More()) return Standard_False; diff --git a/src/IGESToBRep/IGESToBRep_Actor.cxx b/src/IGESToBRep/IGESToBRep_Actor.cxx index 0304ddec5b..12638809c5 100644 --- a/src/IGESToBRep/IGESToBRep_Actor.cxx +++ b/src/IGESToBRep/IGESToBRep_Actor.cxx @@ -198,7 +198,7 @@ Handle(Transfer_Binder) IGESToBRep_Actor::Transfer "read.iges.resource.name", "read.iges.sequence", info, mymodel->ReShape(), - aPS.Next()); + aPS.Next(), false, TopAbs_EDGE); XSAlgo::AlgoContainer()->MergeTransferInfo(TP, info, nbTPitems); } diff --git a/src/IGESToBRep/IGESToBRep_Reader.cxx b/src/IGESToBRep/IGESToBRep_Reader.cxx index e1f2a409db..0230ca403f 100644 --- a/src/IGESToBRep/IGESToBRep_Reader.cxx +++ b/src/IGESToBRep/IGESToBRep_Reader.cxx @@ -552,7 +552,7 @@ Standard_Boolean IGESToBRep_Reader::Transfer(const Standard_Integer num, shape = XSAlgo::AlgoContainer()->ProcessShape( shape, eps*CAS.GetUnitFactor(), CAS.GetMaxTol(), "read.iges.resource.name", "read.iges.sequence", info, - aPS.Next() ); + aPS.Next(), false, TopAbs_EDGE); if (aPS.UserBreak()) return Standard_False; diff --git a/src/XSAlgo/XSAlgo_AlgoContainer.cxx b/src/XSAlgo/XSAlgo_AlgoContainer.cxx index 332a392be5..9f639cbd68 100644 --- a/src/XSAlgo/XSAlgo_AlgoContainer.cxx +++ b/src/XSAlgo/XSAlgo_AlgoContainer.cxx @@ -92,7 +92,8 @@ TopoDS_Shape XSAlgo_AlgoContainer::ProcessShape(const TopoDS_Shape& theShape, Handle(Standard_Transient)& theInfo, const Handle(ShapeBuild_ReShape)& theReShape, const Message_ProgressRange& theProgress, - const Standard_Boolean theNonManifold) const + const Standard_Boolean theNonManifold, + const TopAbs_ShapeEnum theDetalisationLevel) const { if (theShape.IsNull()) { @@ -114,7 +115,7 @@ TopoDS_Shape XSAlgo_AlgoContainer::ProcessShape(const TopoDS_Shape& theShape, aRscfile = thePrscfile; aContext = new ShapeProcess_ShapeContext(theShape, aRscfile); } - aContext->SetDetalisation(TopAbs_EDGE); + aContext->SetDetalisation(theDetalisationLevel); } aContext->SetNonManifold(theNonManifold); theInfo = aContext; @@ -199,12 +200,13 @@ TopoDS_Shape XSAlgo_AlgoContainer::ProcessShape(const TopoDS_Shape& theShape, const Standard_CString thePseq, Handle(Standard_Transient)& theInfo, const Message_ProgressRange& theProgress, - const Standard_Boolean theNonManifold) const + const Standard_Boolean theNonManifold, + const TopAbs_ShapeEnum theDetalisationLevel) const { Handle(ShapeBuild_ReShape) aReShape = new ShapeBuild_ReShape(); return ProcessShape(theShape, thePrec, theMaxTol, thePrscfile, thePseq, theInfo, aReShape, theProgress, - theNonManifold); + theNonManifold, theDetalisationLevel); } //======================================================================= diff --git a/src/XSAlgo/XSAlgo_AlgoContainer.hxx b/src/XSAlgo/XSAlgo_AlgoContainer.hxx index 122051e42b..c4f33071c0 100644 --- a/src/XSAlgo/XSAlgo_AlgoContainer.hxx +++ b/src/XSAlgo/XSAlgo_AlgoContainer.hxx @@ -19,9 +19,10 @@ #include #include -#include -#include #include +#include +#include +#include class ShapeBuild_ReShape; class XSAlgo_ToolContainer; @@ -71,7 +72,8 @@ public: const Standard_CString thePseq, Handle(Standard_Transient)& theInfo, const Message_ProgressRange& theProgress = Message_ProgressRange(), - const Standard_Boolean theNonManifold = Standard_False) const; + const Standard_Boolean theNonManifold = Standard_False, + const TopAbs_ShapeEnum theDetalisationLevel = TopAbs_VERTEX) const; //! Does shape processing with specified tolerances //! @param[in] theShape shape to process @@ -92,7 +94,8 @@ public: Handle(Standard_Transient)& theInfo, const Handle(ShapeBuild_ReShape)& theReShape, const Message_ProgressRange& theProgress = Message_ProgressRange(), - const Standard_Boolean theNonManifold = Standard_False) const; + const Standard_Boolean theNonManifold = Standard_False, + const TopAbs_ShapeEnum theDetalisationLevel = TopAbs_VERTEX) const; //! Checks quality of pcurve of the edge on the given face, //! and corrects it if necessary. diff --git a/tests/bugs/step/bug32681 b/tests/bugs/step/bug32681 new file mode 100644 index 0000000000..2f3e7a8bd4 --- /dev/null +++ b/tests/bugs/step/bug32681 @@ -0,0 +1,27 @@ +puts "==================================" +puts "0032681: Data Exchange - Missed dimension after STEP export" +puts "Check adding of dimension" +puts "==================================" + +pload DCAF + +ReadStep D [locate_data_file bug32681.stp] +XGetOneShape s D +explode s V +XAddSubShape D s_1 0:1:1:1 +XAddSubShape D s_84 0:1:1:1 +XAddDimension D 0:1:1:1:57 0:1:1:1:58 +param write.step.schema 5 +param write.surfacecurve.mode 0 +set tmpFile ${imagedir}/tmpFile.stp +WriteStep D $tmpFile +Close D +ReadStep D1 $tmpFile +set str [XDumpDGTs D1 all] +if {[string first "0:1:1:1:57" $str] == -1 || [string first "0:1:1:1:58" $str] == -1} { + puts "Error: don't find subshape" +} +Close D1 +file delete $tmpFile +param write.step.schema 4 +param write.surfacecurve.mode 1