0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / BRepMesh / BRepMesh_ConstrainedBaseMeshAlgo.hxx
1 // Created on: 2019-07-08
2 // Copyright (c) 2019 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_ConstrainedBaseMeshAlgo_HeaderFile
17 #define _BRepMesh_ConstrainedBaseMeshAlgo_HeaderFile
18
19 #include <BRepMesh_BaseMeshAlgo.hxx>
20
21 class BRepMesh_Delaun;
22
23 //! Class provides base functionality to build face triangulation using Dealunay approach.
24 //! Performs generation of mesh using raw data from model.
25 class BRepMesh_ConstrainedBaseMeshAlgo : public BRepMesh_BaseMeshAlgo
26 {
27 public:
28
29   //! Constructor.
30   BRepMesh_ConstrainedBaseMeshAlgo ()
31   {
32   }
33
34   //! Destructor.
35   virtual ~BRepMesh_ConstrainedBaseMeshAlgo ()
36   {
37   }
38
39   DEFINE_STANDARD_RTTIEXT(BRepMesh_ConstrainedBaseMeshAlgo, BRepMesh_BaseMeshAlgo)
40
41 protected:
42
43   //! Returns size of cell to be used by acceleration circles grid structure.
44   virtual std::pair<Standard_Integer, Standard_Integer> getCellsCount (const Standard_Integer /*theVerticesNb*/)
45   {
46     return std::pair<Standard_Integer, Standard_Integer> (-1, -1);
47   }
48
49   //! Performs processing of generated mesh.
50   //! By default does nothing.
51   //! Expected to be called from method generateMesh() in successor classes.
52   virtual void postProcessMesh (BRepMesh_Delaun&              /*theMesher*/,
53                                 const Message_ProgressRange&  /*theRange*/)
54   {
55   }
56 };
57
58 #endif