mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0027329: Export to STEP failure
Do ProcessShape for non-manifold too, Add binding of already written shared faces to STEP entity for non-manifold. Minor correction of test case bugs/step/bug27329
This commit is contained in:
parent
67e26cc101
commit
f117cc5a81
@ -33,6 +33,7 @@
|
|||||||
#include <OSD_Timer.hxx>
|
#include <OSD_Timer.hxx>
|
||||||
#include <ShapeAnalysis_ShapeTolerance.hxx>
|
#include <ShapeAnalysis_ShapeTolerance.hxx>
|
||||||
#include <ShapeExtend_Explorer.hxx>
|
#include <ShapeExtend_Explorer.hxx>
|
||||||
|
#include <ShapeProcess_ShapeContext.hxx>
|
||||||
#include <Standard_Type.hxx>
|
#include <Standard_Type.hxx>
|
||||||
#include <StepBasic_ApplicationProtocolDefinition.hxx>
|
#include <StepBasic_ApplicationProtocolDefinition.hxx>
|
||||||
#include <StepBasic_HArray1OfProduct.hxx>
|
#include <StepBasic_HArray1OfProduct.hxx>
|
||||||
@ -269,6 +270,34 @@ Handle(StepShape_NonManifoldSurfaceShapeRepresentation) STEPControl_ActorWrite::
|
|||||||
return aResult;
|
return aResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : mergeInfoForNM
|
||||||
|
//purpose : bind already written shared faces to STEP entity for non-manifold
|
||||||
|
//=======================================================================
|
||||||
|
void STEPControl_ActorWrite::mergeInfoForNM(const Handle(Transfer_FinderProcess)& theFP,
|
||||||
|
const Handle(Standard_Transient) &theInfo) const
|
||||||
|
{
|
||||||
|
Handle(ShapeProcess_ShapeContext) aContext = Handle(ShapeProcess_ShapeContext)::DownCast ( theInfo );
|
||||||
|
if ( aContext.IsNull() ) return;
|
||||||
|
|
||||||
|
const TopTools_DataMapOfShapeShape &aMap = aContext->Map();
|
||||||
|
TopTools_DataMapIteratorOfDataMapOfShapeShape aShapeShapeIt(aMap);
|
||||||
|
|
||||||
|
for ( ; aShapeShapeIt.More(); aShapeShapeIt.Next() ) {
|
||||||
|
TopoDS_Shape anOrig = aShapeShapeIt.Key(), aRes = aShapeShapeIt.Value();
|
||||||
|
if (anOrig.ShapeType() != TopAbs_FACE)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
Handle(TransferBRep_ShapeMapper) anOrigMapper= TransferBRep::ShapeMapper ( theFP, anOrig);
|
||||||
|
Handle(Transfer_Binder) anOrigBinder = theFP->Find ( anOrigMapper );
|
||||||
|
if (anOrigBinder.IsNull())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
Handle(TransferBRep_ShapeMapper) aResMapper = TransferBRep::ShapeMapper ( theFP, aRes );
|
||||||
|
theFP->Bind(aResMapper, anOrigBinder);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : SetMode
|
//function : SetMode
|
||||||
@ -867,15 +896,14 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferShape (const Handle(Tran
|
|||||||
Handle(Standard_Transient) info;
|
Handle(Standard_Transient) info;
|
||||||
Standard_Real maxTol = Interface_Static::RVal("read.maxprecision.val");
|
Standard_Real maxTol = Interface_Static::RVal("read.maxprecision.val");
|
||||||
|
|
||||||
// Fix only manifold shapes, do nothing with non-manifold topology as it is processed separately (ssv; 13.11.2010)
|
|
||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
if (isManifold)
|
aShape = XSAlgo::AlgoContainer()->ProcessShape(xShape, Tol, maxTol,
|
||||||
aShape = XSAlgo::AlgoContainer()->ProcessShape(xShape, Tol, maxTol,
|
"write.step.resource.name",
|
||||||
"write.step.resource.name",
|
"write.step.sequence", info,
|
||||||
"write.step.sequence", info,
|
FP->GetProgress() );
|
||||||
FP->GetProgress() );
|
if (!isManifold) {
|
||||||
else
|
mergeInfoForNM(FP, info);
|
||||||
aShape = xShape;
|
}
|
||||||
|
|
||||||
// create a STEP entity corresponding to shape
|
// create a STEP entity corresponding to shape
|
||||||
Handle(StepGeom_GeometricRepresentationItem) item;
|
Handle(StepGeom_GeometricRepresentationItem) item;
|
||||||
|
@ -96,6 +96,9 @@ private:
|
|||||||
//! (ssv; 13.11.2010)
|
//! (ssv; 13.11.2010)
|
||||||
Standard_EXPORT Handle(StepShape_NonManifoldSurfaceShapeRepresentation) getNMSSRForGroup (const Handle(TopTools_HSequenceOfShape)& shapeGroup, const Handle(Transfer_FinderProcess)& FP, Standard_Boolean& isNMSSRCreated) const;
|
Standard_EXPORT Handle(StepShape_NonManifoldSurfaceShapeRepresentation) getNMSSRForGroup (const Handle(TopTools_HSequenceOfShape)& shapeGroup, const Handle(Transfer_FinderProcess)& FP, Standard_Boolean& isNMSSRCreated) const;
|
||||||
|
|
||||||
|
//! bind already written shared faces to STEP entity for non-manifold
|
||||||
|
Standard_EXPORT void mergeInfoForNM(const Handle(Transfer_FinderProcess)& theFP, const Handle(Standard_Transient) &theInfo) const;
|
||||||
|
|
||||||
Standard_Integer mygroup;
|
Standard_Integer mygroup;
|
||||||
Standard_Real mytoler;
|
Standard_Real mytoler;
|
||||||
STEPConstruct_ContextTool myContext;
|
STEPConstruct_ContextTool myContext;
|
||||||
|
23
tests/bugs/step/bug27329
Normal file
23
tests/bugs/step/bug27329
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC27329"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
#########################
|
||||||
|
# Export to STEP failure
|
||||||
|
#########################
|
||||||
|
|
||||||
|
restore [locate_data_file bug27329_phenix.brep] a
|
||||||
|
|
||||||
|
param write.step.nonmanifold 1
|
||||||
|
param read.step.nonmanifold 1
|
||||||
|
newmodel
|
||||||
|
|
||||||
|
stepwrite 0 a $imagedir/bug27329_temp.stp
|
||||||
|
stepread $imagedir/bug27329_temp.stp b *
|
||||||
|
renamevar b_1 result
|
||||||
|
|
||||||
|
checknbshapes result -solid 3 -shell 3 -face 42
|
||||||
|
|
||||||
|
param write.step.nonmanifold 0
|
||||||
|
param read.step.nonmanifold 0
|
||||||
|
newmodel
|
Loading…
x
Reference in New Issue
Block a user