mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-01 15:57:56 +08:00
14d4e91171
- Added automated migration scripts for handle syntax, standard types, and macros - Deprecated legacy `Standard_*` types and macros in favor of native C++ equivalents - Introduced modern `occ` namespace with template-based type checking helpers - Enhanced NCollection macros to support variadic arguments for complex template types- Added automated migration scripts for handle syntax, standard types, and macros - Deprecated legacy `Standard_*` types and macros in favor of native C++ equivalents - Introduced modern `occ` namespace with template-based type checking helpers - Enhanced NCollection macros to support variadic arguments for complex template types
87 lines
3.3 KiB
C++
87 lines
3.3 KiB
C++
// Created on: 1995-10-26
|
|
// Created by: Yves FRICAUD
|
|
// Copyright (c) 1995-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 _BRepAlgo_AsDes_HeaderFile
|
|
#define _BRepAlgo_AsDes_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <NCollection_List.hxx>
|
|
#include <TopTools_ShapeMapHasher.hxx>
|
|
#include <NCollection_DataMap.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
class TopoDS_Shape;
|
|
|
|
//! SD to store descendants and ascendants of Shapes.
|
|
class BRepAlgo_AsDes : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
//! Creates an empty AsDes.
|
|
Standard_EXPORT BRepAlgo_AsDes();
|
|
|
|
Standard_EXPORT void Clear();
|
|
|
|
//! Stores <SS> as a futur subshape of <S>.
|
|
Standard_EXPORT void Add(const TopoDS_Shape& S, const TopoDS_Shape& SS);
|
|
|
|
//! Stores <SS> as futurs SubShapes of <S>.
|
|
Standard_EXPORT void Add(const TopoDS_Shape& S, const NCollection_List<TopoDS_Shape>& SS);
|
|
|
|
Standard_EXPORT bool HasAscendant(const TopoDS_Shape& S) const;
|
|
|
|
Standard_EXPORT bool HasDescendant(const TopoDS_Shape& S) const;
|
|
|
|
//! Returns the Shape containing <S>.
|
|
Standard_EXPORT const NCollection_List<TopoDS_Shape>& Ascendant(const TopoDS_Shape& S) const;
|
|
|
|
//! Returns futur subhapes of <S>.
|
|
Standard_EXPORT const NCollection_List<TopoDS_Shape>& Descendant(const TopoDS_Shape& S) const;
|
|
|
|
//! Returns futur subhapes of <S>.
|
|
Standard_EXPORT NCollection_List<TopoDS_Shape>& ChangeDescendant(const TopoDS_Shape& S);
|
|
|
|
//! Replace theOldS by theNewS.
|
|
//! theOldS disappear from this.
|
|
Standard_EXPORT void Replace(const TopoDS_Shape& theOldS, const TopoDS_Shape& theNewS);
|
|
|
|
//! Remove theS from me.
|
|
Standard_EXPORT void Remove(const TopoDS_Shape& theS);
|
|
|
|
//! Returns True if (S1> and <S2> has common
|
|
//! Descendants. Stores in <LC> the Commons Descendants.
|
|
Standard_EXPORT bool HasCommonDescendant(const TopoDS_Shape& S1,
|
|
const TopoDS_Shape& S2,
|
|
NCollection_List<TopoDS_Shape>& LC) const;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(BRepAlgo_AsDes, Standard_Transient)
|
|
|
|
private:
|
|
//! Replace theOldS by theNewS.
|
|
//! theOldS disappear from this.
|
|
Standard_EXPORT void BackReplace(const TopoDS_Shape& theOldS,
|
|
const TopoDS_Shape& theNewS,
|
|
const NCollection_List<TopoDS_Shape>& theL,
|
|
const bool theInUp);
|
|
|
|
private:
|
|
NCollection_DataMap<TopoDS_Shape, NCollection_List<TopoDS_Shape>, TopTools_ShapeMapHasher> up;
|
|
NCollection_DataMap<TopoDS_Shape, NCollection_List<TopoDS_Shape>, TopTools_ShapeMapHasher> down;
|
|
};
|
|
|
|
#endif // _BRepAlgo_AsDes_HeaderFile
|