Skip to content
Snippets Groups Projects
Select Git revision
  • f55633bad0503ecf844c3a10072aaf1d9e92e2f8
  • 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

GModelIO_NEU.cpp

Blame
  • HexNodeBasis.h 680 B
    #ifndef _HEXNODEBASIS_H_
    #define _HEXNODEBASIS_H_
    
    #include "BasisHierarchical0Form.h"
    
    /**
       @class HexNodeBasis
       @brief A Node Basis for Hexahedra
    
       This class can instantiate a Node-Based Basis
       (high or low order) for Hexahedra.@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 HexNodeBasis: public BasisHierarchical0Form{
     public:
      //! @param order The order of the Basis
      //!
      //! Returns a new Node-Basis for Hexahedra of the given order
      HexNodeBasis(size_t order);
    
      //! @return Deletes this Basis
      //!
      virtual ~HexNodeBasis(void);
    };
    
    #endif