Warning, /include/opencascade/BOPAlgo_WireEdgeSet.lxx is written in an unsupported language. File is not indexed.
0001 // Created by: Peter KURNEV
0002 // Copyright (c) 2010-2014 OPEN CASCADE SAS
0003 // Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
0004 // Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
0005 // EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
0006 //
0007 // This file is part of Open CASCADE Technology software library.
0008 //
0009 // This library is free software; you can redistribute it and/or modify it under
0010 // the terms of the GNU Lesser General Public License version 2.1 as published
0011 // by the Free Software Foundation, with special exception defined in the file
0012 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0013 // distribution for complete text of the license and disclaimer of any warranty.
0014 //
0015 // Alternatively, this file may be used under the terms of Open CASCADE
0016 // commercial license or contractual agreement.
0017
0018 //=======================================================================
0019 //function :
0020 //purpose :
0021 //=======================================================================
0022 inline BOPAlgo_WireEdgeSet::BOPAlgo_WireEdgeSet()
0023 {
0024 }
0025 //=======================================================================
0026 //function :
0027 //purpose :
0028 //=======================================================================
0029 inline BOPAlgo_WireEdgeSet::BOPAlgo_WireEdgeSet(const Handle(NCollection_BaseAllocator)& theAllocator)
0030 :
0031 myStartShapes(theAllocator),
0032 myShapes(theAllocator)
0033 {
0034 }
0035 //=======================================================================
0036 //function : ~
0037 //purpose :
0038 //=======================================================================
0039 inline BOPAlgo_WireEdgeSet::~BOPAlgo_WireEdgeSet()
0040 {
0041 }
0042 //=======================================================================
0043 //function : Clear
0044 //purpose :
0045 //=======================================================================
0046 inline void BOPAlgo_WireEdgeSet::Clear()
0047 {
0048 myStartShapes.Clear();
0049 myShapes.Clear();
0050 }
0051 //=======================================================================
0052 //function : SetFace
0053 //purpose :
0054 //=======================================================================
0055 inline void BOPAlgo_WireEdgeSet::SetFace(const TopoDS_Face& aF)
0056 {
0057 myFace=aF;
0058 }
0059 //=======================================================================
0060 //function : Face
0061 //purpose :
0062 //=======================================================================
0063 inline const TopoDS_Face& BOPAlgo_WireEdgeSet::Face()const
0064 {
0065 return myFace;
0066 }
0067 //=======================================================================
0068 //function : AddStartElement
0069 //purpose :
0070 //=======================================================================
0071 inline void BOPAlgo_WireEdgeSet::AddStartElement(const TopoDS_Shape& aE)
0072 {
0073 myStartShapes.Append(aE);
0074 }
0075 //=======================================================================
0076 //function : StartElements
0077 //purpose :
0078 //=======================================================================
0079 inline const TopTools_ListOfShape& BOPAlgo_WireEdgeSet::StartElements()const
0080 {
0081 return myStartShapes;
0082 }
0083 //=======================================================================
0084 //function : AddShape
0085 //purpose :
0086 //=======================================================================
0087 inline void BOPAlgo_WireEdgeSet::AddShape(const TopoDS_Shape& aW)
0088 {
0089 myShapes.Append(aW);
0090 }
0091 //=======================================================================
0092 //function : Shapes
0093 //purpose :
0094 //=======================================================================
0095 inline const TopTools_ListOfShape& BOPAlgo_WireEdgeSet::Shapes()const
0096 {
0097 return myShapes;
0098 }