From f885b5a826f63d908d09c4b639dc7abbc0708c22 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 19 Dec 2000 16:21:10 +0000 Subject: [PATCH] Undo change, which should really have happened on a branch. git-svn-id: https://svn.dealii.org/trunk@3579 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/numerics/data_out_faces.cc | 8 +------- deal.II/deal.II/source/numerics/data_out_rotation.cc | 7 +------ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/deal.II/deal.II/source/numerics/data_out_faces.cc b/deal.II/deal.II/source/numerics/data_out_faces.cc index 69a915349c..c04b828c60 100644 --- a/deal.II/deal.II/source/numerics/data_out_faces.cc +++ b/deal.II/deal.II/source/numerics/data_out_faces.cc @@ -22,11 +22,6 @@ #include #include -#include - -//Todo: Do this more clever -static MappingQ1 mapping; - #ifdef DEAL_II_USE_MT #include #endif @@ -41,8 +36,7 @@ void DataOutFaces::build_some_patches (Data data) QTrapez<1> q_trapez; QIterated patch_points (q_trapez, data.n_subdivisions); - FEFaceValues fe_patch_values(mapping, - dofs->get_fe(), + FEFaceValues fe_patch_values(dofs->get_fe(), patch_points, update_values); diff --git a/deal.II/deal.II/source/numerics/data_out_rotation.cc b/deal.II/deal.II/source/numerics/data_out_rotation.cc index 0450d675ed..12e920c151 100644 --- a/deal.II/deal.II/source/numerics/data_out_rotation.cc +++ b/deal.II/deal.II/source/numerics/data_out_rotation.cc @@ -19,13 +19,9 @@ #include #include #include -#include #include #include -//Todo: Do this more clever -static MappingQ1 mapping; - #ifdef DEAL_II_USE_MT #include #endif @@ -41,8 +37,7 @@ void DataOutRotation::build_some_patches (Data data) QTrapez<1> q_trapez; QIterated patch_points (q_trapez, data.n_subdivisions); - FEValues fe_patch_values(mapping, - dofs->get_fe(), + FEValues fe_patch_values(dofs->get_fe(), patch_points, update_values); -- 2.39.5