mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Toolkit 'TKHLR' was fully refactored for 'Standard_Address' and macros except about half of package 'HLRBREP' there 'Standard_Address' is used through the 'generic' mechanism.
77 lines
2.5 KiB
Plaintext
77 lines
2.5 KiB
Plaintext
// Created on: 1993-01-11
|
|
// Created by: Christophe MARION
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <TColgp_HArray1OfXYZ.hxx>
|
|
#include <HLRAlgo_HArray1OfTData.hxx>
|
|
#include <HLRAlgo_HArray1OfPHDat.hxx>
|
|
|
|
//=======================================================================
|
|
//function : FaceIndex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void
|
|
HLRAlgo_PolyData::FaceIndex (const Standard_Integer I)
|
|
{
|
|
myFaceIndices.Index = I;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : FaceIndex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Integer
|
|
HLRAlgo_PolyData::FaceIndex () const
|
|
{
|
|
return myFaceIndices.Index;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Nodes
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline TColgp_Array1OfXYZ &
|
|
HLRAlgo_PolyData::Nodes () const
|
|
{ return myHNodes->ChangeArray1(); }
|
|
|
|
//=======================================================================
|
|
//function : TData
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline HLRAlgo_Array1OfTData &
|
|
HLRAlgo_PolyData::TData () const
|
|
{ return myHTData->ChangeArray1(); }
|
|
|
|
//=======================================================================
|
|
//function : PHDat
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline HLRAlgo_Array1OfPHDat &
|
|
HLRAlgo_PolyData::PHDat () const
|
|
{ return myHPHDat->ChangeArray1(); }
|
|
|
|
//=======================================================================
|
|
//function : Hiding
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Boolean HLRAlgo_PolyData::Hiding () const
|
|
{ return !myHPHDat.IsNull(); }
|