| 62 | //-------------------------------------------------------------------------------- |
| 63 | template <std::floating_point T> |
| 64 | void CoordinateElement<T>::permute_subentity_closure(std::span<std::int32_t> d, |
| 65 | std::uint32_t cell_info, |
| 66 | mesh::CellType entity_type, |
| 67 | int entity_index) const |
| 68 | { |
| 69 | assert(_element); |
| 70 | _element->permute_subentity_closure_inv( |
| 71 | d, cell_info, mesh::cell_type_to_basix_type(entity_type), entity_index); |
| 72 | } |
| 73 | //-------------------------------------------------------------------------------- |
| 74 | template <std::floating_point T> |
| 75 | ElementDofLayout CoordinateElement<T>::create_dof_layout() const |
no outgoing calls
no test coverage detected