From 36e46b67d6a105bb6774e4f93cf71bd75c9e017e Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 8 Jun 2005 21:31:11 +0000
Subject: [PATCH] fixed small bug when drawing the boundary of a prism for a
 time step > 1

---
 Graphics/PostElement.cpp | 4 ++--
 doc/VERSIONS             | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Graphics/PostElement.cpp b/Graphics/PostElement.cpp
index 7d1a8172bf..2f19c140a4 100644
--- a/Graphics/PostElement.cpp
+++ b/Graphics/PostElement.cpp
@@ -1,4 +1,4 @@
-// $Id: PostElement.cpp,v 1.65 2005-05-21 17:27:04 geuzaine Exp $
+// $Id: PostElement.cpp,v 1.66 2005-06-08 21:31:11 geuzaine Exp $
 //
 // Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
 //
@@ -775,7 +775,7 @@ void Draw_ScalarPrism(Post_View * View, int preproNormals,
     Draw_ScalarQuadrangle(View, 0, ValMin, ValMax, Xp, Yp, Zp, Val);
     REORDER4(1, 2, 5, 4);
     Draw_ScalarQuadrangle(View, 0, ValMin, ValMax, Xp, Yp, Zp, Val);
-    Draw_ScalarTriangle(View, 0, ValMin, ValMax, &X[3], &Y[3], &Z[3], &V[3]);
+    Draw_ScalarTriangle(View, 0, ValMin, ValMax, &X[3], &Y[3], &Z[3], &vv[3]);
     View->TimeStep = ts;
     View->Boundary++;
     return;
diff --git a/doc/VERSIONS b/doc/VERSIONS
index 88da8e8fd5..771ac03110 100644
--- a/doc/VERSIONS
+++ b/doc/VERSIONS
@@ -1,4 +1,4 @@
-$Id: VERSIONS,v 1.332 2005-06-08 19:12:05 geuzaine Exp $
+$Id: VERSIONS,v 1.333 2005-06-08 21:31:11 geuzaine Exp $
 
 New since 1.60: added support for second order (curved) elements in
 post-processor; new version (1.4) of post-processing file formats; new
@@ -10,7 +10,8 @@ loading and drawing of line meshes and 2D iso views; optimize handling
 of meshes with large number of physical entities; Removed Discrete
 Line and Discrete Surface commands: the same functionnality can now be
 obtained by simply loading meshes in the usual formats; fixed coloring
-by mesh partition; new "mesh statistics" export format;
+by mesh partition; new "mesh statistics" export format; various small
+bug fixes.
 
 New in 1.60: added support for discrete curves; new Window menu on Mac
 OS X; generalized all octree-based plugins (CutGrid, StreamLines,
-- 
GitLab