From: David Wells Date: Fri, 10 Apr 2020 13:51:12 +0000 (-0400) Subject: Fix a doxygen table. X-Git-Tag: v9.2.0-rc1~255^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9869%2Fhead;p=dealii.git Fix a doxygen table. Doxygen has its own syntax for tables. --- diff --git a/include/deal.II/base/bounding_box.h b/include/deal.II/base/bounding_box.h index 6af0ec964f..2d3002411a 100644 --- a/include/deal.II/base/bounding_box.h +++ b/include/deal.II/base/bounding_box.h @@ -288,26 +288,21 @@ namespace internal * value. * * The convention is the following: Starting from the locked coordinate we - * store the lower dimensional coordinates consecutively and wrapping - * around when going over the dimension. This relationship can be - * described by the following tables: + * store the lower dimensional coordinates consecutively and wrap around + * when going over the dimension. This relationship is, in 2D, * - * 2D - * ------------------------------------------------ * | locked in 2D | 1D coordinate | 2D coordinate | - * |--------------------------------------------- | + * |:------------:|:-------------:|:-------------:| * | x0 | (a) | (x0, a) | * | x1 | (a) | (a , x1) | - * ------------------------------------------------ * - * 3D - * -------------------------------------------------- + * and, in 3D, + * * | locked in 3D | 2D coordinates | 3D coordinates | - * |----------------------------------------------- | + * |:-------------|:--------------:|:--------------:| * | x0 | (a, b) | (x0, a, b) | * | x1 | (a, b) | ( b, x1, a) | * | x2 | (a, b) | ( a, b, x2) | - * -------------------------------------------------- * * Given a locked coordinate, this function maps a coordinate index in dim * dimension to a coordinate index in dim + 1 dimensions.