Warning, /include/opencascade/HLRBRep_ShapeBounds.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1997-04-17
0002 // Created by: Christophe MARION
0003 // Copyright (c) 1997-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 //=======================================================================
0018 //function : HLRBRep_ShapeBounds
0019 //purpose :
0020 //=======================================================================
0021
0022 inline HLRBRep_ShapeBounds::HLRBRep_ShapeBounds ()
0023 : myNbIso(0),
0024 myVertStart(0),
0025 myVertEnd(0),
0026 myEdgeStart(0),
0027 myEdgeEnd(0),
0028 myFaceStart(0),
0029 myFaceEnd(0)
0030 {
0031 }
0032
0033 //=======================================================================
0034 //function : Shape
0035 //purpose :
0036 //=======================================================================
0037
0038 inline void
0039 HLRBRep_ShapeBounds::Shape (const Handle(HLRTopoBRep_OutLiner)& S)
0040 { myShape = S; }
0041
0042 //=======================================================================
0043 //function : Shape
0044 //purpose :
0045 //=======================================================================
0046
0047 inline const Handle(HLRTopoBRep_OutLiner) &
0048 HLRBRep_ShapeBounds::Shape () const
0049 { return myShape; }
0050
0051 //=======================================================================
0052 //function : ShapeData
0053 //purpose :
0054 //=======================================================================
0055
0056 inline void HLRBRep_ShapeBounds::
0057 ShapeData (const Handle(Standard_Transient)& SD)
0058 { myShapeData = SD; }
0059
0060 //=======================================================================
0061 //function : ShapeData
0062 //purpose :
0063 //=======================================================================
0064
0065 inline const Handle(Standard_Transient) & HLRBRep_ShapeBounds::ShapeData () const
0066 { return myShapeData; }
0067
0068 //=======================================================================
0069 //function : NbOfIso
0070 //purpose :
0071 //=======================================================================
0072
0073 inline void HLRBRep_ShapeBounds::NbOfIso (const Standard_Integer nbIso)
0074 { myNbIso = nbIso; }
0075
0076 //=======================================================================
0077 //function : NbOfIso
0078 //purpose :
0079 //=======================================================================
0080
0081 inline Standard_Integer HLRBRep_ShapeBounds::NbOfIso () const
0082 { return myNbIso; }