Skip to content
Snippets Groups Projects
Select Git revision
  • a1781e7c7ca65013df03c9bcdb3e05404a9c4b97
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

CutPlane.h

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    CutPlane.h 670 B
    #ifndef _CUTPLANE_H_
    #define _CUTPLANE_H
    #include "Plugin.h"
    class GMSH_CutPlanePlugin : public GMSH_Post_Plugin
    {
      /*Plane a x + b y + c z + d = 0*/
      double a,b,c,d;
    public:
      GMSH_CutPlanePlugin(double A, double B, double C, double D);
      virtual void getName  (char *name) const;
      virtual void getInfos (char *author, 
    			 char *copyright,
    			 char *help_text) const;
      virtual void CatchErrorMessage (char *errorMessage) const;
      virtual void SetOption (char *optionName, void *optionValue);
      virtual int getNbOptions() const;
      virtual void GetOption (int iopt, char *optionName, void *optionValue) const;  
      virtual Post_View *execute (Post_View *);
    };
    #endif