0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / BRepMesh / BRepMesh_DelaunayBaseMeshAlgo.hxx
CommitLineData
7bd071ed 1// Created on: 2016-07-07
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_DelaunayBaseMeshAlgo_HeaderFile
17#define _BRepMesh_DelaunayBaseMeshAlgo_HeaderFile
18
4c04741d 19#include <BRepMesh_ConstrainedBaseMeshAlgo.hxx>
7bd071ed 20#include <NCollection_Shared.hxx>
21#include <IMeshTools_Parameters.hxx>
22
23class BRepMesh_DataStructureOfDelaun;
24class BRepMesh_Delaun;
25
26//! Class provides base fuctionality to build face triangulation using Dealunay approach.
27//! Performs generation of mesh using raw data from model.
4c04741d 28class BRepMesh_DelaunayBaseMeshAlgo : public BRepMesh_ConstrainedBaseMeshAlgo
7bd071ed 29{
30public:
31
32 //! Constructor.
33 Standard_EXPORT BRepMesh_DelaunayBaseMeshAlgo();
34
35 //! Destructor.
36 Standard_EXPORT virtual ~BRepMesh_DelaunayBaseMeshAlgo();
37
4c04741d 38 DEFINE_STANDARD_RTTI_INLINE(BRepMesh_DelaunayBaseMeshAlgo, BRepMesh_ConstrainedBaseMeshAlgo)
7bd071ed 39
40protected:
41
7bd071ed 42 //! Generates mesh for the contour stored in data structure.
43 Standard_EXPORT virtual void generateMesh() Standard_OVERRIDE;
7bd071ed 44};
45
46#endif