Note: this is documentation for an old release. View the latest documentation at docs.fenicsproject.org/basix/v0.9.0/cpp/lattice_8h_source.html
Home Installation C++ docs Python docs
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 <vector>
9 #include <xtensor/xtensor.hpp>
10 
11 namespace basix::lattice
12 {
13 enum class type
14 {
15  equispaced,
16  gll_warped
17 };
18 
38 xt::xtensor<double, 2> create(cell::type celltype, int n, lattice::type type,
39  bool exterior);
40 
41 } // namespace basix::lattice
basix::cell::type
type
Cell type.
Definition: cell.h:16