Re: graphics3d listanimate
- To: mathgroup at smc.vnet.net
- Subject: [mg111444] Re: graphics3d listanimate
- From: "David Park" <djmpark at comcast.net>
- Date: Mon, 2 Aug 2010 07:01:49 -0400 (EDT)
Every animation, or dynamic presentation, needs a FIXED BACKGROUND. In this
case a fixed PlotRange. Also, ListAnimate appears to require more than two
items in the list.
a = Graphics3D[Line[{{0, 0, 0}, {0, 1, 0}}],
PlotRange -> {{0, 2}, {0, 2}, {0, 1}},
BoxRatios -> {1, 1, .25}];
b = Graphics3D[Line[{{1, 0, 0}, {1, 1, 0}}],
PlotRange -> {{0, 2}, {0, 2}, {0, 1}},
BoxRatios -> {1, 1, .25}];
ListAnimate[{a, b, a, b}, 2]
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/
From: michuco [mailto:ibmichuco at hotmail.com]
Hi,
Can one use ListAnimate with Graphics3D primitives?
I have two lines created by
a = Graphics3D[Line[{{0, 0, 0}, {0, 1, 0}}]];
b = Graphics3D[Line[{{1, 0, 0}, {1, 1, 0}}]];
and the following
ListAnimate[{a,b}]
doesn't show an animated sequence of two line alternating.
Any suggestion is appreciated,
Michuco