From 11005f4f449fd43081be3090f7e3da0ff77bcccb Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Fri, 13 Jan 2006 08:20:12 +0000 Subject: [PATCH] Bug fix: change to new numbering scheme. git-svn-id: https://svn.dealii.org/trunk@12010 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/numerics/data_out_faces.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 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 8262757f4d..ae578b042d 100644 --- a/deal.II/deal.II/source/numerics/data_out_faces.cc +++ b/deal.II/deal.II/source/numerics/data_out_faces.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors +// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -64,7 +64,8 @@ void DataOutFaces::build_some_patches (Data data) Assert (patch != this->patches.end(), ExcInternalError()); for (unsigned int vertex=0; vertex::vertices_per_cell; ++vertex) - patch->vertices[vertex] = face.first->face(face.second)->vertex(vertex); + patch->vertices[vertex] = face.first->face(face.second)->vertex( + GeometryInfo::ucd_to_deal[vertex]); if (data.n_datasets > 0) { -- 2.39.5