Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/opencascade/HLRAlgo_PolyInternalData.lxx is written in an unsupported language. File is not indexed.

0001 // Created on: 1993-01-11
0002 // Created by: Christophe MARION
0003 // Copyright (c) 1993-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 <TColStd_HArray1OfInteger.hxx>
0018 #include <TColStd_HArray1OfBoolean.hxx>
0019 #include <TColStd_HArray1OfReal.hxx>
0020 #include <TColgp_HArray1OfPnt.hxx>
0021 #include <TColgp_HArray1OfPnt2d.hxx>
0022 #include <TColgp_HArray1OfDir.hxx>
0023 #include <HLRAlgo_HArray1OfTData.hxx>
0024 #include <HLRAlgo_HArray1OfPISeg.hxx>
0025 #include <HLRAlgo_HArray1OfPINod.hxx>
0026 
0027 //=======================================================================
0028 //function : DecTData
0029 //purpose  : 
0030 //=======================================================================
0031 
0032 inline void HLRAlgo_PolyInternalData::DecTData ()
0033 { myNbTData--; }
0034 
0035 //=======================================================================
0036 //function : DecPISeg
0037 //purpose  : 
0038 //=======================================================================
0039 
0040 inline void HLRAlgo_PolyInternalData::DecPISeg ()
0041 { myNbPISeg--; }
0042 
0043 //=======================================================================
0044 //function : DecPINod
0045 //purpose  : 
0046 //=======================================================================
0047 
0048 inline void HLRAlgo_PolyInternalData::DecPINod ()
0049 { myNbPINod--; }
0050 
0051 //=======================================================================
0052 //function : NbTData
0053 //purpose  : 
0054 //=======================================================================
0055 
0056 inline Standard_Integer
0057 HLRAlgo_PolyInternalData::NbTData () const
0058 { return myNbTData; }
0059 
0060 //=======================================================================
0061 //function : NbPISeg
0062 //purpose  : 
0063 //=======================================================================
0064 
0065 inline Standard_Integer
0066 HLRAlgo_PolyInternalData::NbPISeg () const
0067 { return myNbPISeg; }
0068 
0069 //=======================================================================
0070 //function : NbPINod
0071 //purpose  : 
0072 //=======================================================================
0073 
0074 inline Standard_Integer
0075 HLRAlgo_PolyInternalData::NbPINod () const
0076 { return myNbPINod; }
0077 
0078 //=======================================================================
0079 //function : Planar
0080 //purpose  : 
0081 //=======================================================================
0082 
0083 inline Standard_Boolean
0084 HLRAlgo_PolyInternalData::Planar () const
0085 { return myPlanar; }
0086 
0087 //=======================================================================
0088 //function : Planar
0089 //purpose  : 
0090 //=======================================================================
0091 
0092 inline void
0093 HLRAlgo_PolyInternalData::Planar (const Standard_Boolean B)
0094 { myPlanar = B; }
0095 
0096 //=======================================================================
0097 //function : IntOutL
0098 //purpose  : 
0099 //=======================================================================
0100 
0101 inline Standard_Boolean
0102 HLRAlgo_PolyInternalData::IntOutL () const
0103 { return myIntOutL; }
0104 
0105 //=======================================================================
0106 //function : IntOutL
0107 //purpose  : 
0108 //=======================================================================
0109 
0110 inline void
0111 HLRAlgo_PolyInternalData::IntOutL (const Standard_Boolean B)
0112 { myIntOutL = B; }
0113 
0114 //=======================================================================
0115 //function : TData
0116 //purpose  : 
0117 //=======================================================================
0118 
0119 inline HLRAlgo_Array1OfTData &
0120 HLRAlgo_PolyInternalData::TData () const
0121 { return myTData->ChangeArray1(); }
0122 
0123 //=======================================================================
0124 //function : PINod
0125 //purpose  : 
0126 //=======================================================================
0127 
0128 inline HLRAlgo_Array1OfPINod &
0129 HLRAlgo_PolyInternalData::PINod () const
0130 { return myPINod->ChangeArray1(); }
0131 
0132 //=======================================================================
0133 //function : PISeg
0134 //purpose  : 
0135 //=======================================================================
0136 
0137 inline HLRAlgo_Array1OfPISeg &
0138 HLRAlgo_PolyInternalData::PISeg () const
0139 { return myPISeg->ChangeArray1(); }