0026106: BRepMesh - revision of data model
[occt.git] / src / BRepMesh / BRepMesh_FaceDiscret.hxx
CommitLineData
7bd071ed 1// Created on: 2016-04-19
2// Copyright (c) 2016 OPEN CASCADE SAS
3// Created by: Oleg AGASHIN
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _BRepMesh_FaceDiscret_HeaderFile
17#define _BRepMesh_FaceDiscret_HeaderFile
18
19#include <IMeshTools_ModelAlgo.hxx>
20#include <IMeshTools_Parameters.hxx>
21#include <IMeshData_Types.hxx>
22#include <IMeshTools_MeshAlgoFactory.hxx>
23
24//! Class implements functionality starting triangulation of model's faces.
25//! Each face is processed separately and can be executed in parallel mode.
26//! Uses mesh algo factory passed as initializer to create instace of triangulation
27//! algorithm according to type of surface of target face.
28class BRepMesh_FaceDiscret : public IMeshTools_ModelAlgo
29{
30public:
31
32 //! Constructor.
33 Standard_EXPORT BRepMesh_FaceDiscret(
34 const Handle(IMeshTools_MeshAlgoFactory)& theAlgoFactory);
35
36 //! Destructor.
37 Standard_EXPORT virtual ~BRepMesh_FaceDiscret();
38
39 //! Performs processing of edges of the given model.
40 Standard_EXPORT virtual Standard_Boolean Perform(
41 const Handle(IMeshData_Model)& theModel,
42 const IMeshTools_Parameters& theParameters) Standard_OVERRIDE;
43
44 //! Functor API to discretize the given edge.
45 inline void operator() (const Standard_Integer theFaceIndex) const {
46 process(theFaceIndex);
47 }
48
49 DEFINE_STANDARD_RTTI_INLINE(BRepMesh_FaceDiscret, IMeshTools_ModelAlgo)
50
51private:
52
53 //! Checks existing discretization of the face and updates data model.
54 void process(const Standard_Integer theFaceIndex) const;
55
56private:
57
58 Handle(IMeshTools_MeshAlgoFactory) myAlgoFactory;
59 Handle(IMeshData_Model) myModel;
60 IMeshTools_Parameters myParameters;
61};
62
63#endif