Skip to content
Snippets Groups Projects
Select Git revision
  • f4b4645146183eb4c618ee1e0a6e1b6a49424622
  • master default protected
  • devel
  • MC/hide_eigen_sol
  • compare_at_gauss_points
  • mixed_interface_fix
  • detect-gmsh-api-version
  • MC/mpi_support
  • MC/volsrcs
  • fix-gmsh-master
  • find-gmsh
  • MC/hipify
  • v0.3.0
  • v0.2.0
  • v0.1.0
15 results

point.hpp

Blame
  • TriLagrangeBasis.h 595 B
    #ifndef _TRILAGRANGEBASIS_H_
    #define _TRILAGRANGEBASIS_H_
    
    #include "BasisLagrange.h"
    
    /**
       @class TriLagrangeBasis
       @brief Lagrange Basis for Triangles
    
       This class can instantiate a @em Lagrange @em Basis
       for a Triangle and for a given Order.@n
    
       It uses
       <a href="http://geuz.org/gmsh/">gmsh</a> Basis.
     */
    
    class TriLagrangeBasis: public BasisLagrange{
     public:
      //! @param order A natural number
      //!
      //! Returns a new TriLagrangeBasis
      //! of the given Order
      TriLagrangeBasis(size_t order);
    
      //! Deletes this Basis
      //!
      virtual ~TriLagrangeBasis(void);
    };
    
    #endif