From: Wolfgang Bangerth Date: Thu, 30 Nov 2000 14:02:36 +0000 (+0000) Subject: Add functions missing for function to be instantiated. X-Git-Tag: v8.0.0~19915 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0b949f74a3f4047aba5a7d2ae46a87528d123af;p=dealii.git Add functions missing for function to be instantiated. git-svn-id: https://svn.dealii.org/trunk@3517 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_lib.criss_cross.h b/deal.II/deal.II/include/fe/fe_lib.criss_cross.h index 3a0a8eca4c..5990beb06e 100644 --- a/deal.II/deal.II/include/fe/fe_lib.criss_cross.h +++ b/deal.II/deal.II/include/fe/fe_lib.criss_cross.h @@ -180,6 +180,24 @@ class FECrissCross : public FiniteElement */ FECrissCross (); + /** + * Transforms the point @p{p} on + * the unit cell to the point + * @p{p_real} on the real cell + * @p{cell} and returns @p{p_real}. + */ + virtual Point transform_unit_to_real_cell (const DoFHandler::cell_iterator cell, + const Point &p) const; + + /** + * Transforms the point @p{p} on + * the real cell to the point + * @p{p_unit} on the unit cell + * @p{cell} and returns @p{p_unit}. + */ + virtual Point transform_real_to_unit_cell (const DoFHandler::cell_iterator cell, + const Point &p) const; + /** * Return the value of the @p{i}th shape * function at point @p{p} on the unit cell.