gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
delaunay3d.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 DELAUNAY3D_H
7 #define DELAUNAY3D_H
8 
9 class MVertex;
10 class MTetrahedron;
11 
12 // tetrahedralize the vertices given in S; adds 8 new vertices at the end of S
13 // (the corners of an enclosing box)
14 void delaunayTriangulation(const int numThreads, const int nptsatonce,
15  std::vector<MVertex *> &S,
16  std::vector<MTetrahedron *> &T, bool removeBox);
17 
18 #endif
MTetrahedron
Definition: MTetrahedron.h:34
MVertex
Definition: MVertex.h:24
S
#define S
Definition: DefaultOptions.h:21
delaunayTriangulation
void delaunayTriangulation(const int numThreads, const int nptsatonce, std::vector< MVertex * > &S, std::vector< MTetrahedron * > &T, bool removeBox)
Definition: delaunay3d.cpp:1230