 |
|
List Archives > 
Maple User Group List Archive > 
Archive by date > 
This Month By Date > 
This Month By Topic
[MUG] animation problems
| [MUG] animation problems |
|
Author: Bertfried Fauser
Posted: Mon, 18 Nov 2002 00:02:43 +0100
|
>> From: Bertfried Fauser "fauser"
Dear MUG(els)
While in mapleV the following works and produces the expected `movie`
-- no wizardry heer :)
> N:=10:
> anim:=array(1..N):
> for i from 1 to N do
> k:=i/N:
> P1[i]:=PLOT(POINTS([k,1-k]));
> P2[i]:=PLOT(POINTS(1/2,1/2]));
> anim[i]:=display([P1[i],P2[i]]);
> od:
> display([seq(anim[i],i=1..N)],insequence=true,view=[-2..2,-2..2]);
it does not in maple 6! (Only the last frame occure, all others are empty)
Is there any work arround (speel ;-D ) for this problem?
best
BF.
% Bertfried Fauser Fachbereich Physik Fach M 678
% Universit"at Konstanz 78457 Konstanz Germany
% Phone : +49 7531 883786 FAX : +49 7531 88-4864 or 4266
% E-mail: "Bertfried.Fauser"
% Web : http://clifford.physik.uni-konstanz.de/~fauser
|
| [MUG] Re: animation problems |
|
Author: Maple User Group
Posted: Fri, 22 Nov 2002 16:51:08 -0500
|
>> From: Maple User Group "maple_gr"
-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-
From: "Thomas Richard" "t.richard"
To: "maple-list"
Subject: AW: animation problems
Date: Wed, 20 Nov 2002 18:35:14 +0100
| >> From: Bertfried Fauser "fauser"
| While in mapleV the following works and produces the expected `movie`
| -- no wizardry heer :)
| > N:=10:
| > anim:=array(1..N):
| > for i from 1 to N do
| > k:=i/N:
| > P1[i]:=PLOT(POINTS([k,1-k]));
| > P2[i]:=PLOT(POINTS(1/2,1/2]));
| > anim[i]:=display([P1[i],P2[i]]);
| > od:
| > display([seq(anim[i],i=1..N)],insequence=true,view=[-2..2,-2..2]);
|
| it does not in maple 6! (Only the last frame occure, all others are empty)
|
| Is there any work arround (speel ;-D ) for this problem?
This was a known in Maple 6/7 for UNIX/Linux. A workaround is to issue
plotsetup(gdi):
before calling display(...).
To switch back to the OpenGL driver, use plotsetup(default):
In Maple 8 this bug has been fixed.
--
Mit freundlichen Gruessen / best regards
Thomas Richard Tel.: +49-241-40008-52, Fax: -13
Maple Support "mailto:maple.support"
Scientific Computers GmbH <http://www.scientific.de>
-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-
Date: Wed, 20 Nov 2002 07:36:35 -0900
To: "maple-list"
From: "Mark Fitch" "afmaf"
Subject: animation problems
What operating system are you using? This is a known problem that occurs on
unix variants (at least Solaris and Linux).
Mark A. Fitch
"mfitch"
http://www.math.uaa.alaska.edu/~afmaf
University of Alaska Anchorage
3211 Providence Drive, Anchorage, AK 99508
|
Previous by date: [MUG] Re: Too many levels of recursion, Maple User Group
Next by date: [MUG] Re: Fourier Series, Kronecker-Delta ?, Maple User Group
Previous thread: [MUG] Fourier Series, Kronecker-Delta ?, Andreas Wolf
Next thread: [MUG] Fourier Series, Kronecker-Delta ?, Andreas Wolf
|
|
|