// Created on: 1995-11-10 // 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_Loop_HeaderFile #define _BRepAlgo_Loop_HeaderFile #include #include #include #include #include #include #include class TopoDS_Face; class TopoDS_Edge; //! Builds the loops from a set of edges on a face. class BRepAlgo_Loop { public: DEFINE_STANDARD_ALLOC Standard_EXPORT BRepAlgo_Loop(); //! Init with the set of edges must have //! pcurves on . Standard_EXPORT void Init (const TopoDS_Face& F); //! Add E with . will be copied and trim //! by vertices in . Standard_EXPORT void AddEdge (TopoDS_Edge& E, const TopTools_ListOfShape& LV); //! Add as const edge, E can be in the result. Standard_EXPORT void AddConstEdge (const TopoDS_Edge& E); //! Add as a set of const edges. Standard_EXPORT void AddConstEdges (const TopTools_ListOfShape& LE); //! Make loops. Standard_EXPORT void Perform(); //! Cut the edge in several edges on the //! vertices. Standard_EXPORT void CutEdge (const TopoDS_Edge& E, const TopTools_ListOfShape& VonE, TopTools_ListOfShape& NE) const; //! Returns the list of wires performed. //! can be an empty list. Standard_EXPORT const TopTools_ListOfShape& NewWires() const; //! Build faces from the wires result. Standard_EXPORT void WiresToFaces(); //! Returns the list of faces. //! Warning: The method as to be called before. //! can be an empty list. Standard_EXPORT const TopTools_ListOfShape& NewFaces() const; //! Returns the list of new edges built from an edge //! it can be an empty list. Standard_EXPORT const TopTools_ListOfShape& NewEdges (const TopoDS_Edge& E) const; //! Returns the datamap of vertices with their substitutes. Standard_EXPORT void GetVerticesForSubstitute (TopTools_DataMapOfShapeShape& VerVerMap) const; Standard_EXPORT void VerticesForSubstitute (TopTools_DataMapOfShapeShape& VerVerMap); protected: private: TopoDS_Face myFace; TopTools_ListOfShape myConstEdges; TopTools_ListOfShape myEdges; TopTools_DataMapOfShapeListOfShape myVerOnEdges; TopTools_ListOfShape myNewWires; TopTools_ListOfShape myNewFaces; TopTools_DataMapOfShapeListOfShape myCutEdges; TopTools_DataMapOfShapeShape myVerticesForSubstitute; }; #endif // _BRepAlgo_Loop_HeaderFile