From 1e1292366ba57e10918a2a9f20d4864f49abd4fc Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 30 Nov 2000 14:02:36 +0000 Subject: [PATCH] Add functions missing for function to be instantiated. git-svn-id: https://svn.dealii.org/trunk@3517 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/include/fe/fe_lib.criss_cross.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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. -- 2.39.5