Skip to content
Snippets Groups Projects
Select Git revision
  • 321d444f77d85012056847d7d7fe0f4de5db6496
  • master default protected
  • alphashapes
  • quadMeshingTools
  • cygwin_conv_path
  • macos_arm64
  • add-transfiniteautomatic-to-geo
  • patch_releases_4_10
  • HierarchicalHDiv
  • isuruf-master-patch-63355
  • hyperbolic
  • hexdom
  • hxt_update
  • jf
  • 1618-pythonocc-and-gmsh-api-integration
  • octreeSizeField
  • hexbl
  • alignIrregularVertices
  • getEdges
  • patch_releases_4_8
  • isuruf-master-patch-51992
  • 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
  • gmsh_4_8_4
  • gmsh_4_8_3
  • gmsh_4_8_2
  • gmsh_4_8_1
  • gmsh_4_8_0
  • gmsh_4_7_1
  • gmsh_4_7_0
41 results

STensor53.h

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    TriEdgeBasis.h 673 B
    #ifndef _TRIEDGEBASIS_H_
    #define _TRIEDGEBASIS_H_
    
    #include "BasisHierarchical1Form.h"
    
    /**
       @class TriEdgeBasis
       @brief An Edge Basis for Triangles
    
       This class can instantiate an Edge-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 TriEdgeBasis: public BasisHierarchical1Form{
     public:
      //! @param order The order of the Basis
      //!
      //! Returns a new Edge-Basis for Triangles of the given order
      TriEdgeBasis(size_t order);
    
      //! Deletes this Basis
      //!
      virtual ~TriEdgeBasis(void);
    };
    
    #endif