geom/src/NMTTools/NMTTools_DEProcessor.hxx

118 lines
3.3 KiB
C++
Raw Normal View History

2013-04-01 18:25:01 +06:00
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
2012-08-09 13:58:02 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
//
2012-08-09 13:58:02 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
2012-08-09 13:58:02 +06:00
// File: NMTTools_DEProcessor.hxx
// Created: Wed Sep 12 12:10:52 2001
// Author: Peter KURNEV
// <pkv@irinox>
2004-12-01 15:39:14 +05:00
#ifndef _NMTTools_DEProcessor_HeaderFile
#define _NMTTools_DEProcessor_HeaderFile
2012-08-09 13:58:02 +06:00
#include <Standard.hxx>
#include <Standard_Macro.hxx>
2004-12-01 15:39:14 +05:00
#include <NMTTools_PPaveFiller.hxx>
#include <NMTDS_PShapesDataStructure.hxx>
#include <Standard_Boolean.hxx>
#include <BOPTools_IndexedDataMapOfIntegerDEInfo.hxx>
2012-08-09 13:58:02 +06:00
#include <NMTTools_PaveFiller.hxx>
2004-12-01 15:39:14 +05:00
#include <Standard_Integer.hxx>
#include <Standard_Real.hxx>
//! <br>
//! The Algorithm to compute and store in interferences' pool <br>
//! and in the Data Structure the following values <br>
//! for degenerated edges <br>
//! 1. Paves/Pave set(s) <br>
//! 2. Split parts <br>
//! 3. States (3D) for split parts <br>
//! <br>
2012-08-09 13:58:02 +06:00
//=======================================================================
//class : NMTTools_DEProcessor
//purpose :
//=======================================================================
2004-12-01 15:39:14 +05:00
class NMTTools_DEProcessor {
public:
//! Constructor <br>
//! <br>
//! Constructor <br>
//! <br>
2012-08-09 13:58:02 +06:00
Standard_EXPORT
NMTTools_DEProcessor(NMTTools_PaveFiller& aFiller);
//! Launches the processor <br>
2012-08-09 13:58:02 +06:00
Standard_EXPORT
void Do() ;
//! Returns TRUE if it is Ok <br>
2012-08-09 13:58:02 +06:00
Standard_EXPORT
Standard_Boolean IsDone() const;
2004-12-01 15:39:14 +05:00
protected:
2012-08-09 13:58:02 +06:00
Standard_EXPORT
void FindDegeneratedEdges() ;
Standard_EXPORT
void DoPaves() ;
Standard_EXPORT
void FindPaveBlocks(const Standard_Integer nED,
const Standard_Integer nVD,
const Standard_Integer nFD,
BOPTools_ListOfPaveBlock& aLPB) ;
Standard_EXPORT
void FillPaveSet(const Standard_Integer nED,
const Standard_Integer nVD,
const Standard_Integer nFD,
const BOPTools_ListOfPaveBlock& aLPB) ;
Standard_EXPORT
void FillSplitEdgesPool(const Standard_Integer nED) ;
Standard_EXPORT
void MakeSplitEdges(const Standard_Integer nED,
const Standard_Integer nFD) ;
Standard_EXPORT
void MakeSplitEdge(const TopoDS_Edge& aS1,
const TopoDS_Face& aF,
const TopoDS_Vertex& aV1,
const Standard_Real aP1,
const TopoDS_Vertex& aV2,
const Standard_Real aP2,
TopoDS_Edge& aNewEdge) ;
NMTTools_PPaveFiller myFiller;
NMTDS_PShapesDataStructure myDS;
Standard_Boolean myIsDone;
BOPTools_IndexedDataMapOfIntegerDEInfo myDEMap;
2004-12-01 15:39:14 +05:00
};
#endif