Skip to content

Commit

Permalink
Merge pull request #14790 from tjhei/doc_grid_gen_simplex
Browse files Browse the repository at this point in the history
doc: fix GridGenerator::convert_hypercube_to_simplex_mesh
  • Loading branch information
drwells committed Feb 14, 2023
2 parents ce54bf7 + 7b777f6 commit 2ca6f1c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/deal.II/grid/grid_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -2275,14 +2275,17 @@ namespace GridGenerator
convert_hypercube_to_simplex_mesh(const Triangulation<dim, spacedim> &in_tria,
Triangulation<dim, spacedim> &out_tria);

// Doxygen will not show the function above if we include the
// specialization.
#ifndef DOXYGEN
/**
* Specialization of the above function for 1d: simply copy triangulation.
*/
template <int spacedim>
void
convert_hypercube_to_simplex_mesh(const Triangulation<1, spacedim> &in_tria,
Triangulation<1, spacedim> & out_tria);

#endif

/**
* Namespace Airfoil contains classes and functions in order to create a
Expand Down

0 comments on commit 2ca6f1c

Please sign in to comment.