Warning, /include/opencascade/HLRTopoBRep_Data.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1995-02-07
0002 // Created by: Christophe MARION
0003 // Copyright (c) 1995-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 <HLRTopoBRep_FaceData.hxx>
0018 #include <TopoDS.hxx>
0019 #include <TopoDS_Shape.hxx>
0020 #include <TopoDS_Face.hxx>
0021 #include <TopoDS_Edge.hxx>
0022 #include <TopoDS_Vertex.hxx>
0023
0024 //=======================================================================
0025 //function : EdgeSplE
0026 //purpose :
0027 //=======================================================================
0028
0029 inline const TopTools_ListOfShape &
0030 HLRTopoBRep_Data::EdgeSplE (const TopoDS_Edge& E) const
0031 {
0032 return mySplE(E);
0033 }
0034
0035 //=======================================================================
0036 //function : FaceIntL
0037 //purpose :
0038 //=======================================================================
0039
0040 inline const TopTools_ListOfShape &
0041 HLRTopoBRep_Data::FaceIntL (const TopoDS_Face& F) const
0042 {
0043 return myData(F).FaceIntL();
0044 }
0045
0046 //=======================================================================
0047 //function : FaceOutL
0048 //purpose :
0049 //=======================================================================
0050
0051 inline const TopTools_ListOfShape &
0052 HLRTopoBRep_Data::FaceOutL (const TopoDS_Face& F) const
0053 {
0054 return myData(F).FaceOutL();
0055 }
0056
0057 //=======================================================================
0058 //function : FaceIsoL
0059 //purpose :
0060 //=======================================================================
0061
0062 inline const TopTools_ListOfShape &
0063 HLRTopoBRep_Data::FaceIsoL (const TopoDS_Face& F) const
0064 {
0065 return myData(F).FaceIsoL();
0066 }
0067
0068 //=======================================================================
0069 //function : IsOutV
0070 //purpose :
0071 //=======================================================================
0072
0073 inline Standard_Boolean
0074 HLRTopoBRep_Data::IsOutV (const TopoDS_Vertex& V) const
0075 {
0076 return myOutV.Contains(V);
0077 }
0078
0079 //=======================================================================
0080 //function : IsIntV
0081 //purpose :
0082 //=======================================================================
0083
0084 inline Standard_Boolean
0085 HLRTopoBRep_Data::IsIntV (const TopoDS_Vertex& V) const
0086 {
0087 return myIntV.Contains(V);
0088 }
0089
0090 //=======================================================================
0091 //function : AddOutV
0092 //purpose :
0093 //=======================================================================
0094
0095 inline void HLRTopoBRep_Data::AddOutV (const TopoDS_Vertex& V)
0096 {
0097 myOutV.Add(V);
0098 }
0099
0100 //=======================================================================
0101 //function : AddIntV
0102 //purpose :
0103 //=======================================================================
0104
0105 inline void HLRTopoBRep_Data::AddIntV (const TopoDS_Vertex& V)
0106 {
0107 myIntV.Add(V);
0108 }
0109
0110 //=======================================================================
0111 //function : MoreEdge
0112 //purpose :
0113 //=======================================================================
0114
0115 inline Standard_Boolean HLRTopoBRep_Data::MoreEdge () const
0116 {
0117 return myEIterator.More();
0118 }
0119
0120 //=======================================================================
0121 //function : Edge
0122 //purpose :
0123 //=======================================================================
0124
0125 inline const TopoDS_Edge & HLRTopoBRep_Data::Edge () const
0126 {
0127 return TopoDS::Edge(myEIterator.Key());
0128 }
0129
0130 //=======================================================================
0131 //function : MoreVertex
0132 //purpose :
0133 //=======================================================================
0134
0135 inline Standard_Boolean HLRTopoBRep_Data::MoreVertex () const
0136 {
0137 return myVIterator.More();
0138 }
0139
0140 //=======================================================================
0141 //function : NextVertex
0142 //purpose :
0143 //=======================================================================
0144
0145 inline void HLRTopoBRep_Data::NextVertex ()
0146 {
0147 myVIterator.Next();
0148 }
0149