Skip to content
Snippets Groups Projects
Select Git revision
  • af63cbcf512ce18679eb588b8c6145cbc6a7a97b
  • master default protected
2 results

shape.pro

Blame
  • HexEdgeBasis.h 674 B
    #ifndef _HEXEDGEBASIS_H_
    #define _HEXEDGEBASIS_H_
    
    #include "BasisHierarchical1Form.h"
    
    /**
       @class HexEdgeBasis
       @brief An Edge Basis for Hexahedra
    
       This class can instantiate an Edge-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 HexEdgeBasis: public BasisHierarchical1Form{
     public:
      //! @param order The order of the Basis
      //!
      //! Returns a new Edge-Basis for Hexahedra of the given order
      HexEdgeBasis(size_t order);
    
      //! Deletes this Basis
      //!
      virtual ~HexEdgeBasis(void);
    };
    
    #endif