gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
meshGRegionHxt.h
Go to the documentation of this file.
1 // Gmsh - Copyright (C) 1997-2022 C. Geuzaine, J.-F. Remacle
2 //
3 // See the LICENSE.txt file in the Gmsh root directory for license information.
4 // Please report all issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
5 
6 #ifndef MESH_GREGION_HXT_H
7 #define MESH_GREGION_HXT_H
8 
9 #include <vector>
10 
11 class GRegion;
12 class MVertex;
13 class MTetrahedron;
14 
15 int meshGRegionHxt(std::vector<GRegion *> &regions);
16 void delaunayMeshIn3DHxt(std::vector<MVertex *> &points,
17  std::vector<MTetrahedron *> &tets);
18 
19 #endif
delaunayMeshIn3DHxt
void delaunayMeshIn3DHxt(std::vector< MVertex * > &points, std::vector< MTetrahedron * > &tets)
Definition: meshGRegionHxt.cpp:680
MTetrahedron
Definition: MTetrahedron.h:34
MVertex
Definition: MVertex.h:24
GRegion
Definition: GRegion.h:28
meshGRegionHxt
int meshGRegionHxt(std::vector< GRegion * > &regions)
Definition: meshGRegionHxt.cpp:674