Skip to content
Snippets Groups Projects
Commit 54f0c967 authored by Dave Moxey's avatar Dave Moxey
Browse files

Add missing quad and tri expansions

parent 244ceb34
No related branches found
No related tags found
No related merge requests found
#include <boost/python.hpp>
#include <boost/python/numpy.hpp>
#include <StdRegions/StdQuadExp.h>
using namespace Nektar;
using namespace Nektar::StdRegions;
namespace py = boost::python;
namespace np = boost::python::numpy;
void export_StdQuadExp()
{
py::class_<StdQuadExp, py::bases<StdExpansion>,
boost::shared_ptr<StdQuadExp> >(
"StdQuadExp", py::init<const LibUtilities::BasisKey&,
const LibUtilities::BasisKey&>());
}
#include <boost/python.hpp>
#include <boost/python/numpy.hpp>
#include <StdRegions/StdTriExp.h>
using namespace Nektar;
using namespace Nektar::StdRegions;
namespace py = boost::python;
namespace np = boost::python::numpy;
void export_StdTriExp()
{
py::class_<StdTriExp, py::bases<StdExpansion>,
boost::shared_ptr<StdTriExp> >(
"StdTriExp", py::init<const LibUtilities::BasisKey&,
const LibUtilities::BasisKey&>());
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment