~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Plugin/CutGrid.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-02 18:12:15 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090902181215-yla8zvcas2ucvkm9
[Christophe Prud'homme]
* New upstream release
  + fixed surface mesh orientation bug introduced in 2.4.0;
  + mesh and graphics code refactoring;
  + small usability enhancements and bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
                         double step, double min, double max);
20
20
  void addInView(int numsteps, int connect, int nbcomp, 
21
21
                 double ***pnts, double ***vals, 
22
 
                 List_T *P, int *nP, 
23
 
                 List_T *L, int *nL, 
24
 
                 List_T *Q, int *nQ);
 
22
                 std::vector<double> &P, int *nP, 
 
23
                 std::vector<double> &L, int *nL, 
 
24
                 std::vector<double> &Q, int *nQ);
25
25
  PView *GenerateView (PView *v, int connectPoints);
26
 
public:
 
26
 public:
27
27
  GMSH_CutGridPlugin(){}
28
 
  void getName(char *name) const;
29
 
  void getInfos(char *author, char *copyright, char *help_text) const;
30
 
  void catchErrorMessage(char *errorMessage) const;
 
28
  std::string getName() const { return "CutGrid"; }
 
29
  std::string getHelp() const;
31
30
  int getNbOptions() const;
32
31
  StringXNumber *getOption(int iopt);  
33
32
  PView *execute(PView *);