From 1eb59c7e2290207a6fae4ab2e194542f81ad1e15 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 23 Apr 2011 03:01:38 +0000 Subject: [PATCH] Cross link to the material_id tags. git-svn-id: https://svn.dealii.org/trunk@23632 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/headers/glossary.h | 4 ++++ deal.II/include/deal.II/grid/tria_accessor.h | 14 +++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/deal.II/doc/doxygen/headers/glossary.h b/deal.II/doc/doxygen/headers/glossary.h index 541326ab9f..aa875503bb 100644 --- a/deal.II/doc/doxygen/headers/glossary.h +++ b/deal.II/doc/doxygen/headers/glossary.h @@ -666,6 +666,10 @@ Article{BK07, * consequently, which value the coefficient should have on this particular * cell. The material id is inherited from mother to child cell upon mesh * refinement. + * + * The material id is set and queried using the CellAccessor::material_id, + * CellAccessor::set_material_id and CellAccessor::recursively_set_material_id + * functions. * * * diff --git a/deal.II/include/deal.II/grid/tria_accessor.h b/deal.II/include/deal.II/grid/tria_accessor.h index cb3b0e8148..8e24dec8c5 100644 --- a/deal.II/include/deal.II/grid/tria_accessor.h +++ b/deal.II/include/deal.II/grid/tria_accessor.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -2544,6 +2544,10 @@ class CellAccessor : public TriaAccessor * For a typical use of this * function, see the @ref step_28 * "step-28" tutorial program. + * + * See the @ref GlossMaterialId + * "glossary" for more + * information. */ unsigned char material_id () const; @@ -2554,6 +2558,10 @@ class CellAccessor : public TriaAccessor * For a typical use of this * function, see the @ref step_28 * "step-28" tutorial program. + * + * See the @ref GlossMaterialId + * "glossary" for more + * information. */ void set_material_id (const unsigned char new_material_id) const; @@ -2562,6 +2570,10 @@ class CellAccessor : public TriaAccessor * cell and all its children (and * grand-children, and so on) to * the given value. + * + * See the @ref GlossMaterialId + * "glossary" for more + * information. */ void recursively_set_material_id (const unsigned char new_material_id) const; /** -- 2.39.5