// Created on: 1998-07-30 // Created by: LECLERE Florence // Copyright (c) 1998-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 //======================================================================= //function : TopOpeBRepBuild_FuseFace //purpose : //======================================================================= inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace () : myInternal(Standard_False), myModified(Standard_False), myDone(Standard_False) {} //======================================================================= //function : TopOpeBRepBuild_FuseFace //purpose : //======================================================================= inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace ( const TopTools_ListOfShape& LIF, const TopTools_ListOfShape& LRF, const Standard_Integer CXM) { Init(LIF,LRF,CXM); } //======================================================================= //function : IsDone //purpose : //======================================================================= inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsDone() const { return myDone; } //======================================================================= //function : IsModified //purpose : //======================================================================= inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsModified() const { return myModified; } //======================================================================= //function : ListOfFusionnedFaces //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LFuseFace() const { return myLFF; } //======================================================================= //function : ListOfInternalEdges //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternEdge() const { return myLIE; } //======================================================================= //function : ListOfExternalEdges //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternEdge() const { return myLEE; } //======================================================================= //function : ListOfModifiedEdges //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifEdge() const { return myLME; } //======================================================================= //function : ListOfInternalVertex //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternVertex() const { return myLIV; } //======================================================================= //function : ListOfExternalVertex //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternVertex() const { return myLEV; } //======================================================================= //function : ListOfModifiedVertex //purpose : //======================================================================= inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifVertex() const { return myLMV; }