0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[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
7bd071ed 21
f2006a6f 22//! Class provides base functionality to build face triangulation using Dealunay approach.
7bd071ed 23//! Performs generation of mesh using raw data from model.
4c04741d 24class BRepMesh_DelaunayBaseMeshAlgo : public BRepMesh_ConstrainedBaseMeshAlgo
7bd071ed 25{
26public:
27
28 //! Constructor.
29 Standard_EXPORT BRepMesh_DelaunayBaseMeshAlgo();
30
31 //! Destructor.
32 Standard_EXPORT virtual ~BRepMesh_DelaunayBaseMeshAlgo();
33
4945e8be 34 DEFINE_STANDARD_RTTIEXT(BRepMesh_DelaunayBaseMeshAlgo, BRepMesh_ConstrainedBaseMeshAlgo)
7bd071ed 35
36protected:
37
7bd071ed 38 //! Generates mesh for the contour stored in data structure.
ce97cd97 39 Standard_EXPORT virtual void generateMesh (const Message_ProgressRange& theRange) Standard_OVERRIDE;
7bd071ed 40};
41
42#endif