Skip to content
Snippets Groups Projects
Forked from gmsh / gmsh
9908 commits behind the upstream repository.
CurvedBndDist.h 854 B
// Gmsh - Copyright (C) 1997-2013 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to the public mailing list <gmsh@geuz.org>.

#ifndef _CURVEDBNDDIST_H_
#define _CURVEDBNDDIST_H_

#include "Plugin.h"

extern "C"
{
  GMSH_Plugin *GMSH_RegisterCurvedBndDistPlugin();
}

class GMSH_CurvedBndDistPlugin : public GMSH_PostPlugin
{
    GModel *_m;
  public :
    GMSH_CurvedBndDistPlugin(){}
    std::string getName() const { return "CurvedBndDist"; }
    std::string getShortHelp() const {
      return "Check validity of elements and/or compute min&max of the jacobian";
    }
    std::string getHelp() const;
    std::string getAuthor() const { return "Jonathan Lambrechts"; }
    int getNbOptions() const;
    StringXNumber *getOption(int);  
    PView *execute(PView *);
};
#endif