From: Wolfgang Bangerth Date: Mon, 26 Mar 2001 15:44:17 +0000 (+0000) Subject: Doc update. X-Git-Tag: v8.0.0~19490 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5d4eba468b55bbc4b832bd82b958b60eb0be891;p=dealii.git Doc update. git-svn-id: https://svn.dealii.org/trunk@4290 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/mapping_q.h b/deal.II/deal.II/include/fe/mapping_q.h index df46c92778..7b897388fa 100644 --- a/deal.II/deal.II/include/fe/mapping_q.h +++ b/deal.II/deal.II/include/fe/mapping_q.h @@ -27,13 +27,11 @@ class LagrangeEquidistant; // see upcoming paper. +//TODO: more docs /** - * Mapping class that uses Qp-mappings on boundary AND on inner - * cells. The mapping shape functions make use of tensor product - * polynomials with equidistant support points. - * - * Make sure elsewhere (e.g. in FEValues) that on inner cells only Q1 - * mappings are used. + * Mapping class that uses Qp-mappings on boundary cells. The mapping + * shape functions make use of tensor product polynomials with + * equidistant (on the unit cell) support points. * * @author Ralf Hartmann, Guido Kanschat 2000, 2001 */ @@ -180,13 +178,13 @@ class MappingQ : public MappingQ1 }; /** - * For @p{dim=2,3}. Append - * (appends) the support points - * of all shape functions located - * on bounding lines to the - * vector @p{a}. Points located - * on the line but on vertices - * are not included. + * For @p{dim=2,3}. Append the + * support points of all shape + * functions located on bounding + * lines to the vector + * @p{a}. Points located on the + * line but on vertices are not + * included. * * Needed by the * @p{compute_support_points_simple(laplace)} @@ -203,8 +201,8 @@ class MappingQ : public MappingQ1 * on the boundary. */ virtual void - add_line_support_points (const Triangulation::cell_iterator &cell, - std::vector > &a) const; + add_line_support_points (const typename Triangulation::cell_iterator &cell, + typename std::vector > &a) const; /** * For @p{dim=3}. Append the @@ -231,7 +229,7 @@ class MappingQ : public MappingQ1 */ virtual void add_quad_support_points(const typename Triangulation::cell_iterator &cell, - std::vector > &a) const; + typename std::vector > &a) const; private: