Select Git revision
MVertex.cpp
Forked from
gmsh / gmsh
Source project has a limited visibility.
Tetrahedralize.h 694 B
// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#ifndef _TETRAHEDRALIZE_H_
#define _TETRAHEDRALIZE_H_
#include "Plugin.h"
extern "C"
{
GMSH_Plugin *GMSH_RegisterTetrahedralizePlugin();
}
class GMSH_TetrahedralizePlugin : public GMSH_PostPlugin
{
public:
GMSH_TetrahedralizePlugin(){}
std::string getName() const { return "Tetrahedralize"; }
std::string getShortHelp() const
{
return "Mesh 3D point cloud";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber* getOption(int iopt);
PView *execute(PView *);
};
#endif