From: wolf Date: Mon, 7 Jun 1999 14:31:21 +0000 (+0000) Subject: Doc update. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65844ed08c4060f81ab3f5cfe0f7c72a4778cc04;p=dealii-svn.git Doc update. git-svn-id: https://svn.dealii.org/trunk@1378 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/grid/grid_generator.h b/deal.II/deal.II/include/grid/grid_generator.h index 12e4b82cf6..9ec58e2c22 100644 --- a/deal.II/deal.II/include/grid/grid_generator.h +++ b/deal.II/deal.II/include/grid/grid_generator.h @@ -17,12 +17,12 @@ * domain which is the tensor product of an interval $[a,b]$ in * the given number of spatial dimensions. If you want to create such * a domain, which is a common test case for model problems, call - * #GridGenerator::create_hypercube (tria, a,b)#, which produces a + * #GridGenerator::hyper_cube (tria, a,b)#, which produces a * hypercube domain triangulated with exactly one element. You can * get tensor product meshes by successive refinement of this cell. * * \item Generalized L-shape domain: - * using the #GridGenerator::create_L_region (tria, a,b)# function produces + * using the #GridGenerator::hyper_L (tria, a,b)# function produces * the hypercube with the interval $[a,b]$ without the hypercube * made out of the interval $[(a+b)/2,b]$. Let, for example, be $a=-1$ * and $b=1$, then the hpyer-L in two dimensions is the region @@ -32,15 +32,15 @@ * \item Hyper balls: * You get the circle or ball (or generalized: hyperball) around origin * #p# and with radius #r# by calling - * #Triangulation::create_hyper_ball (p, r)#. The circle is triangulated + * #Triangulation::hyper_ball (p, r)#. The circle is triangulated * by five cells, the ball by seven cells. The diameter of the center cell is * chosen so that the aspect ratio of the boundary cells after one refinement * is minimized in some way. To create a hyperball in one dimension results in * an error. * - * Do not forget to attach a suitable - * boundary approximation object if you want the triangulation to be refined - * at the outer boundaries. + * Do not forget to attach a suitable boundary approximation object + * to the triangulation object you passed to this function if you later want + * the triangulation to be refined at the outer boundaries. * \end{itemize} * * @author Wolfgang Bangerth, 1998, 1999