Basix
lattice.h
1 // Copyright (c) 2020 Chris Richardson & Garth Wells
2 // FEniCS Project
3 // SPDX-License-Identifier: MIT
4 
5 #pragma once
6 
7 #include "cell.h"
8 #include <Eigen/Dense>
9 #include <vector>
10 
11 namespace basix::lattice
12 {
13 enum class type
14 {
15  equispaced,
16  gll_warped
17 };
18 
38 Eigen::ArrayXXd create(cell::type celltype, int n, lattice::type type,
39  bool exterior);
40 
41 } // namespace basix::lattice
type
Cell type.
Definition: cell.h:21