1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Basix C++ documentation
Welcome to the Basix C++ documentation.
Basix is a finite element definition and tabulation runtime library. It
is part of [FEniCSx](https://docs.fenicsproject.org), alongside
[UFL](https://fenics.readthedocs.io/projects/ufl/en/latest),
[FFCx](https://docs.fenicsproject.org/ffcx/main) and DOLFINx ([C++
docs](https://docs.fenicsproject.org/dolfinx/main/cpp), [Python
docs](https://docs.fenicsproject.org/dolfinx/main/python)).
Basix can create finite elements on intervals, triangles,
quadrilaterals, tetrahedra, hexahedra, prisms, and pyramids.
### Using Basix
A Basix element can be created using the function `basix::create_element()`.
This function will return a `basix::FiniteElement` object.
The element can be tabulated using the function
`basix::FiniteElement::tabulate()`.
### Table of contents
- [Index of namespaces](namespaces.html)
- [Index of classes](annotated.html)
- [Index of files](files.html)
|