Skip to content
Snippets Groups Projects
Select Git revision
  • 3f147e49852e19b79b873f3f88edaff2314ae196
  • master default protected
  • patches-4.14
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • alphashapes
  • relaying
  • 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
  • 3023-Fillet2D-Update
  • 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

GmshRemote.h

Blame
  • TriNodeBasis.h 672 B
    #ifndef _TRINODEBASIS_H_
    #define _TRINODEBASIS_H_
    
    #include "BasisHierarchical0Form.h"
    
    /**
       @class TriNodeBasis
       @brief A Node Basis for Triangles
    
       This class can instantiate a Node-Based Basis
       (high or low order) for Triangles.@n
    
       It uses
       <a href="http://www.hpfem.jku.at/publications/szthesis.pdf">Zaglmayr's</a>
       Basis for @em high @em order Polynomial%s generation.@n
     */
    
    class TriNodeBasis: public BasisHierarchical0Form{
     public:
      //! @param order The order of the Basis
      //!
      //! Returns a new Node-Basis for Triangles of the given order
      TriNodeBasis(size_t order);
    
      //! Deletes this Basis
      //!
      virtual ~TriNodeBasis(void);
    };
    
    #endif