Warnings on vc14 were eliminated
[occt.git] / src / HLRAlgo / HLRAlgo_PolyData.lxx
CommitLineData
b311480e 1// Created on: 1993-01-11
2// Created by: Christophe MARION
3// Copyright (c) 1993-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <TColgp_HArray1OfXYZ.hxx>
18#include <HLRAlgo_HArray1OfTData.hxx>
19#include <HLRAlgo_HArray1OfPHDat.hxx>
20
21//=======================================================================
22//function : FaceIndex
23//purpose :
24//=======================================================================
25
26inline void
27HLRAlgo_PolyData::FaceIndex (const Standard_Integer I)
681f3919 28{
29 myFaceIndices.Index = I;
30}
7fd59977 31
32//=======================================================================
33//function : FaceIndex
34//purpose :
35//=======================================================================
36
37inline Standard_Integer
38HLRAlgo_PolyData::FaceIndex () const
681f3919 39{
40 return myFaceIndices.Index;
41}
7fd59977 42
43//=======================================================================
44//function : Nodes
45//purpose :
46//=======================================================================
47
48inline TColgp_Array1OfXYZ &
49HLRAlgo_PolyData::Nodes () const
50{ return myHNodes->ChangeArray1(); }
51
52//=======================================================================
53//function : TData
54//purpose :
55//=======================================================================
56
57inline HLRAlgo_Array1OfTData &
58HLRAlgo_PolyData::TData () const
59{ return myHTData->ChangeArray1(); }
60
61//=======================================================================
62//function : PHDat
63//purpose :
64//=======================================================================
65
66inline HLRAlgo_Array1OfPHDat &
67HLRAlgo_PolyData::PHDat () const
68{ return myHPHDat->ChangeArray1(); }
69
70//=======================================================================
71//function : Hiding
72//purpose :
73//=======================================================================
74
75inline Standard_Boolean HLRAlgo_PolyData::Hiding () const
76{ return !myHPHDat.IsNull(); }