From 12c3b3c374b6eeb0a0e46587f1133901e4b625e5 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 2 Feb 2007 03:28:18 +0000 Subject: [PATCH] Update the documentation a bit. git-svn-id: https://svn.dealii.org/trunk@14401 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/data_out_base.h | 35 ++++++++++++++++------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/deal.II/base/include/base/data_out_base.h b/deal.II/base/include/base/data_out_base.h index 94d800c567..71ae664f0b 100644 --- a/deal.II/base/include/base/data_out_base.h +++ b/deal.II/base/include/base/data_out_base.h @@ -331,12 +331,21 @@ class DataOutBase * QIterated class * when used with the * QTrapez class as - * subquadrature. * + * subquadrature. + * * Since the number of data vectors * is usually the same for all - * patches to be printed, data.size() - * should yield the same value for all - * patches provided. + * patches to be printed, + * data.size() should yield + * the same value for all patches + * provided. The exception are + * patches for which + * points_are_available are set, + * where the actual coordinates of + * the point are appended to the + * 'data' field, see the + * documentation of the + * points_are_available flag. */ Table<2,float> data; @@ -347,13 +356,17 @@ class DataOutBase * table (@ true) or not (@ false), * where the second is the standard and * can be found for all cells in the - * interior of a domain. On the - * boundary, patch points are evaluated - * using a Mapping and therefore have - * to be stored inside the patch, as - * the Mapping and the corresponding - * boundary information might not be - * available later on. + * interior of a domain. + * + * On the boundary of a domain, patch + * points are evaluated using a + * Mapping and therefore have to be + * stored inside the patch, as the + * Mapping and the corresponding + * boundary information are no longer + * available later on when we + * actually write the patch out to an + * output stream. */ bool points_are_available; -- 2.39.5