From 66fafea0515cd0fac44e5752103f30ea60dd6861 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 19 Mar 2013 12:15:51 +0000 Subject: [PATCH] Update documentation slightly. git-svn-id: https://svn.dealii.org/trunk@28942 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/grid/grid_tools.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deal.II/include/deal.II/grid/grid_tools.h b/deal.II/include/deal.II/grid/grid_tools.h index 689a052714..c69eb23ce6 100644 --- a/deal.II/include/deal.II/grid/grid_tools.h +++ b/deal.II/include/deal.II/grid/grid_tools.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by the deal.II authors +// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -166,17 +166,17 @@ namespace GridTools /** * Transform the vertices of the given * triangulation by applying the - * predicate to all its vertices. Since + * function object provided as first argument to all its vertices. Since * the internal consistency of a * triangulation can only be guaranteed * if the transformation is applied to - * the vertices of only one level of a + * the vertices of only one level of * hierarchically refined cells, this * function may only be used if all cells * of the triangulation are on the same * refinement level. * - * The predicate given as + * The transformation given as * argument is used to transform * each vertex. Its respective * type has to offer a @@ -187,14 +187,14 @@ namespace GridTools * pointer to the function. In * either case, argument and * return value have to be of - * type Point. + * type Point. * * This function is used in the * "Possibilities for extensions" section - * of step-38. + * of step-38. It is also used in step-49. */ - template - void transform (const Predicate &predicate, + template + void transform (const Transformation &transformation, Triangulation &triangulation); /** -- 2.39.5