Warning, /include/opencascade/TopOpeBRepBuild_FuseFace.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1998-07-30
0002 // Created by: LECLERE Florence
0003 // Copyright (c) 1998-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016
0017 #include <StdFail_NotDone.hxx>
0018
0019 //=======================================================================
0020 //function : TopOpeBRepBuild_FuseFace
0021 //purpose :
0022 //=======================================================================
0023
0024 inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace () :
0025 myInternal(Standard_False),
0026 myModified(Standard_False),
0027 myDone(Standard_False)
0028 {}
0029
0030
0031 //=======================================================================
0032 //function : TopOpeBRepBuild_FuseFace
0033 //purpose :
0034 //=======================================================================
0035
0036 inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace (
0037 const TopTools_ListOfShape& LIF,
0038 const TopTools_ListOfShape& LRF,
0039 const Standard_Integer CXM)
0040 {
0041 Init(LIF,LRF,CXM);
0042 }
0043
0044 //=======================================================================
0045 //function : IsDone
0046 //purpose :
0047 //=======================================================================
0048
0049 inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsDone() const
0050 {
0051 return myDone;
0052 }
0053
0054
0055 //=======================================================================
0056 //function : IsModified
0057 //purpose :
0058 //=======================================================================
0059
0060 inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsModified() const
0061 {
0062 return myModified;
0063 }
0064
0065
0066 //=======================================================================
0067 //function : ListOfFusionnedFaces
0068 //purpose :
0069 //=======================================================================
0070
0071 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LFuseFace() const
0072 {
0073 return myLFF;
0074 }
0075
0076
0077 //=======================================================================
0078 //function : ListOfInternalEdges
0079 //purpose :
0080 //=======================================================================
0081
0082 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternEdge() const
0083 {
0084 return myLIE;
0085 }
0086
0087 //=======================================================================
0088 //function : ListOfExternalEdges
0089 //purpose :
0090 //=======================================================================
0091
0092 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternEdge() const
0093 {
0094 return myLEE;
0095 }
0096
0097 //=======================================================================
0098 //function : ListOfModifiedEdges
0099 //purpose :
0100 //=======================================================================
0101
0102 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifEdge() const
0103 {
0104 return myLME;
0105 }
0106
0107 //=======================================================================
0108 //function : ListOfInternalVertex
0109 //purpose :
0110 //=======================================================================
0111
0112 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternVertex() const
0113 {
0114 return myLIV;
0115 }
0116
0117 //=======================================================================
0118 //function : ListOfExternalVertex
0119 //purpose :
0120 //=======================================================================
0121
0122 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternVertex() const
0123 {
0124 return myLEV;
0125 }
0126
0127 //=======================================================================
0128 //function : ListOfModifiedVertex
0129 //purpose :
0130 //=======================================================================
0131
0132 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifVertex() const
0133 {
0134 return myLMV;
0135 }