mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
127 lines
4.2 KiB
C++
127 lines
4.2 KiB
C++
// Created on: 1993-10-29
|
|
// 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.
|
|
|
|
#ifndef _HLRAlgo_PolyInternalData_HeaderFile
|
|
#define _HLRAlgo_PolyInternalData_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <HLRAlgo_HArray1OfTData.hxx>
|
|
#include <HLRAlgo_HArray1OfPISeg.hxx>
|
|
#include <HLRAlgo_HArray1OfPINod.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
|
|
class HLRAlgo_PolyInternalData;
|
|
DEFINE_STANDARD_HANDLE(HLRAlgo_PolyInternalData, Standard_Transient)
|
|
|
|
//! to Update OutLines.
|
|
class HLRAlgo_PolyInternalData : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT HLRAlgo_PolyInternalData(const Standard_Integer nbNod, const Standard_Integer nbTri);
|
|
|
|
Standard_EXPORT void UpdateLinks (HLRAlgo_Array1OfTData& theTData,
|
|
HLRAlgo_Array1OfPISeg& thePISeg,
|
|
HLRAlgo_Array1OfPINod& thePINod);
|
|
|
|
Standard_EXPORT Standard_Integer AddNode (HLRAlgo_PolyInternalNode::NodeData& theNod1RValues,
|
|
HLRAlgo_PolyInternalNode::NodeData& theNod2RValues,
|
|
HLRAlgo_Array1OfPINod*& thePINod1,
|
|
HLRAlgo_Array1OfPINod*& thePINod2,
|
|
const Standard_Real theCoef1,
|
|
const Standard_Real theX3,
|
|
const Standard_Real theY3,
|
|
const Standard_Real theZ3);
|
|
|
|
Standard_EXPORT void UpdateLinks (const Standard_Integer theIp1,
|
|
const Standard_Integer theIp2,
|
|
const Standard_Integer theIp3,
|
|
HLRAlgo_Array1OfTData*& theTData1,
|
|
HLRAlgo_Array1OfTData*& theTData2,
|
|
HLRAlgo_Array1OfPISeg*& thePISeg1,
|
|
HLRAlgo_Array1OfPISeg*& thePISeg2,
|
|
HLRAlgo_Array1OfPINod*& thePINod1,
|
|
HLRAlgo_Array1OfPINod*& thePINod2);
|
|
|
|
Standard_EXPORT void Dump() const;
|
|
|
|
Standard_EXPORT void IncTData (HLRAlgo_Array1OfTData*& TData1, HLRAlgo_Array1OfTData*& TData2);
|
|
|
|
Standard_EXPORT void IncPISeg (HLRAlgo_Array1OfPISeg*& PISeg1, HLRAlgo_Array1OfPISeg*& PISeg2);
|
|
|
|
Standard_EXPORT void IncPINod (HLRAlgo_Array1OfPINod*& thePINod1,
|
|
HLRAlgo_Array1OfPINod*& thePINod2);
|
|
|
|
void DecTData();
|
|
|
|
void DecPISeg();
|
|
|
|
void DecPINod();
|
|
|
|
Standard_Integer NbTData() const;
|
|
|
|
Standard_Integer NbPISeg() const;
|
|
|
|
Standard_Integer NbPINod() const;
|
|
|
|
Standard_Boolean Planar() const;
|
|
|
|
void Planar (const Standard_Boolean B);
|
|
|
|
Standard_Boolean IntOutL() const;
|
|
|
|
void IntOutL (const Standard_Boolean B);
|
|
|
|
HLRAlgo_Array1OfTData& TData() const;
|
|
|
|
HLRAlgo_Array1OfPISeg& PISeg() const;
|
|
|
|
HLRAlgo_Array1OfPINod& PINod() const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(HLRAlgo_PolyInternalData,Standard_Transient)
|
|
|
|
private:
|
|
|
|
Standard_Integer myNbTData;
|
|
Standard_Integer myNbPISeg;
|
|
Standard_Integer myNbPINod;
|
|
Standard_Integer myMxTData;
|
|
Standard_Integer myMxPISeg;
|
|
Standard_Integer myMxPINod;
|
|
Standard_Boolean myIntOutL;
|
|
Standard_Boolean myPlanar;
|
|
Handle(HLRAlgo_HArray1OfTData) myTData;
|
|
Handle(HLRAlgo_HArray1OfPISeg) myPISeg;
|
|
Handle(HLRAlgo_HArray1OfPINod) myPINod;
|
|
|
|
};
|
|
|
|
#include <HLRAlgo_PolyInternalData.lxx>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _HLRAlgo_PolyInternalData_HeaderFile
|