Skip to content
Snippets Groups Projects
Select Git revision
  • f55633bad0503ecf844c3a10072aaf1d9e92e2f8
  • master default protected
  • relaying
  • overlaps_tags_and_distributed_export
  • alphashapes
  • patches-4.14
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • 3115-issue-fix
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

partitionRegion.h

Blame
  • fourierVertex.h 730 B
    #ifndef _FOURIER_VERTEX_H_
    #define _FOURIER_VERTEX_H_
    
    #include "GModel.h"
    #include "GVertex.h"
    #include "MVertex.h"
    
    #if defined(HAVE_FOURIER_MODEL)
    
    #include "FM_TopoVertex.h"
    
    class fourierVertex : public GVertex {
     protected:
      FM::TopoVertex *v;
     public:
      fourierVertex(GModel *m, int num, FM::TopoVertex* _v) : GVertex(m, num), v(_v)
      {
        mesh_vertices.push_back(new MVertex(x(), y(), z(), this));
      }
      virtual ~fourierVertex() {}
      virtual GPoint point() const { return GPoint(x(),y(),z()); }
      virtual double x() const { return v->GetX(); }
      virtual double y() const { return v->GetY(); }
      virtual double z() const { return v->GetZ(); }
      ModelType getNativeType() const { return FourierModel; }
    };
    
    #endif
    
    #endif