From 7a7a6eacd9ed01a394db1cf886687f131863afab Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 11 Oct 2002 07:11:20 +0000
Subject: [PATCH] use existingd views

---
 benchmarks/misc/low_memory_animation.geo | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/benchmarks/misc/low_memory_animation.geo b/benchmarks/misc/low_memory_animation.geo
index 639e2df97c..85273a73b6 100644
--- a/benchmarks/misc/low_memory_animation.geo
+++ b/benchmarks/misc/low_memory_animation.geo
@@ -13,21 +13,21 @@ View.ColorTable = {Red,Green,Blue};
 
 // Let's load the views one by one:
 
-For i In {0:1000} // we have 1001 views
+For i In {1:4}
 
-  If (!i)
+  If (i==1)
     // we force the bounding box to be the one of the first view:
-    MergeWithBoundingBox "view0.pos";
+    MergeWithBoundingBox "../../tutorial/view1.pos";
   EndIf
-  If (i)
+  If (i>1)
     // we merge the other views using the same bounding box as the
     // first one:
-    Merge Sprintf("view%g.pos",i);
+    Merge Sprintf("../../tutorial/view%g.pos",i);
   EndIf
 
   Draw;
 
-  Print Sprintf("out%g.jpeg",i);
+  Print Sprintf("out%g.gif",i);
 
   // and we delete the view:
   Delete View[0];
-- 
GitLab