// Created on: 1993-07-23 // Created by: Martine LANGLOIS // Copyright (c) 1993-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //:d7 #ifdef OCCT_DEBUG #define DEBUG #endif //============================================================================= // Create a BrepWithVoids of StepShape from a Solid of TopoDS containing // more than one closed shell //============================================================================= TopoDSToStep_MakeBrepWithVoids:: TopoDSToStep_MakeBrepWithVoids(const TopoDS_Solid& aSolid, const Handle(Transfer_FinderProcess)& FP) { done = Standard_False ; TopoDS_Iterator It; MoniTool_DataMapOfShapeTransient aMap; TColStd_SequenceOfTransient S; TopoDS_Shell aOutShell; Handle(StepShape_TopologicalRepresentationItem) aItem; Handle(StepShape_ClosedShell) aOuter, aCShell; Handle(StepShape_OrientedClosedShell) aOCShell; Handle(StepShape_HArray1OfOrientedClosedShell) aVoids; aOutShell = BRepClass3d::OuterShell(aSolid); TopoDSToStep_Builder StepB; TopoDSToStep_Tool aTool; if (!aOutShell.IsNull()) { It.Initialize(aSolid); for ( ; It.More(); It.Next() ) { if (It.Value().ShapeType() == TopAbs_SHELL) { TopoDS_Shell CurrentShell = TopoDS::Shell(It.Value()); if ( ! aOutShell.IsEqual(CurrentShell) ) //:e0 abv 25 Mar 98: voids should be reversed according to EXPRESS for ABSR CurrentShell.Reverse(); //:d7 abv 16 Mar 98: try to treat 'open' shells as closed since flag // IsClosed() is often incorrect (taken from MakeManifoldSolid(Solid)) aTool.Init(aMap, Standard_False); StepB.Init(CurrentShell, aTool, FP); TopoDSToStep::AddResult ( FP, aTool ); if (StepB.IsDone()) { aCShell = Handle(StepShape_ClosedShell)::DownCast(StepB.Value()); // si OPEN on le force a CLOSED mais que c est une honte ! if (aCShell.IsNull()) { Handle(StepShape_OpenShell) aOShell = Handle(StepShape_OpenShell)::DownCast(StepB.Value()); if (!aOShell.IsNull()) { aCShell = new StepShape_ClosedShell; aCShell->Init (aOShell->Name(),aOShell->CfsFaces()); #ifdef OCCT_DEBUG std::cout<<"Warning: MakeBRepWithVoids: Open shell in the solid; treated as closed"<=1 ) { Handle(TCollection_HAsciiString) aName = new TCollection_HAsciiString(""); aVoids = new StepShape_HArray1OfOrientedClosedShell(1,N); for ( Standard_Integer i=1; i<=N; i++ ) { aOCShell = new StepShape_OrientedClosedShell; // Warning : the Oriented Shell Orientation is not always // TRUE. // Shall check the TopoDS_Shell orientation. // => if the Shell is reversed, shall create an OrientedShell. aOCShell -> Init(aName,Handle(StepShape_ClosedShell)::DownCast(S.Value(i)), Standard_False); //:e0 //:e0 Standard_True); aVoids->SetValue(i, aOCShell); } theBrepWithVoids = new StepShape_BrepWithVoids(); theBrepWithVoids->Init(aName, aOuter, aVoids); done = Standard_True; } else done = Standard_False; } } //============================================================================= // renvoi des valeurs //============================================================================= const Handle(StepShape_BrepWithVoids) & TopoDSToStep_MakeBrepWithVoids::Value() const { StdFail_NotDone_Raise_if (!done, "TopoDSToStep_MakeBrepWithVoids::Value() - no result"); return theBrepWithVoids; }