<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, animate3d, is this possible using pointplots?</title>
    <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 23:53:04 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 23:53:04 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, animate3d, is this possible using pointplots?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, animate3d, is this possible using pointplots?</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots</link>
    </image>
    <item>
      <title>animate should work for this</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer65999</link>
      <itunes:summary>&lt;p&gt;&amp;nbsp;animate3d has been replaced with animate. The animate command is pretty powerful but can take a little time to learn to use.&lt;/p&gt;
&lt;p&gt;Suppose you generate the individual frames with the command&lt;/p&gt;
&lt;pre&gt;
pointplot3d( plotter[1], other options );
&lt;/pre&gt;
&lt;p&gt;then you would create the animation of the 20 frames with&lt;/p&gt;
&lt;pre&gt;
animate( pointplot3d, [plotter[i], other options], i=1..20 );
&lt;/pre&gt;
&lt;p&gt;Now, it sounds as though you want each frame to simply add one more set of points to the overall image. For this, use the trace option of the animate command:&lt;/p&gt;
&lt;pre&gt;
animate( pointplot3d, [plotter[i], other options], i=1..20, trace=1 );
&lt;/pre&gt;
&lt;p&gt;There is also a background option that allows you to specify a common background for all frames in the animation.&lt;/p&gt;
&lt;p&gt;See the help for plots,animate for complete details and some examples.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;&amp;nbsp;animate3d has been replaced with animate. The animate command is pretty powerful but can take a little time to learn to use.&lt;/p&gt;
&lt;p&gt;Suppose you generate the individual frames with the command&lt;/p&gt;
&lt;pre&gt;
pointplot3d( plotter[1], other options );
&lt;/pre&gt;
&lt;p&gt;then you would create the animation of the 20 frames with&lt;/p&gt;
&lt;pre&gt;
animate( pointplot3d, [plotter[i], other options], i=1..20 );
&lt;/pre&gt;
&lt;p&gt;Now, it sounds as though you want each frame to simply add one more set of points to the overall image. For this, use the trace option of the animate command:&lt;/p&gt;
&lt;pre&gt;
animate( pointplot3d, [plotter[i], other options], i=1..20, trace=1 );
&lt;/pre&gt;
&lt;p&gt;There is also a background option that allows you to specify a common background for all frames in the animation.&lt;/p&gt;
&lt;p&gt;See the help for plots,animate for complete details and some examples.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</description>
      <guid>65999</guid>
      <pubDate>Thu, 14 May 2009 20:52:56 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>I appreciate your help, it</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer66000</link>
      <itunes:summary>&lt;p&gt;I appreciate your help, it sounds like exactly what I want, but I get this for output:&lt;/p&gt;
&lt;h3&gt;&amp;gt; animate(pointplot3d, [plotter[c], style = line, linestyle = solid, thickness = 5], c = 1 .. 15);&lt;br /&gt;
Error, (in plots/animate) points are not in the correct format&lt;/h3&gt;
&lt;p&gt;It must be a syntax error of sorts, because when i do this:&lt;/p&gt;
&lt;p&gt;&lt;img alt="" src="file:///tmp/moz-screenshot-6.jpg" /&gt;&lt;/p&gt;
&lt;h3&gt;&amp;gt; pointplot3d(plotter[1],style=line,linestyle=solid,thickness=5);&lt;/h3&gt;
&lt;p&gt;I get an output of this:&lt;/p&gt;
&lt;p&gt;http://s77.photobucket.com/albums/j71/MisterHomes/?action=view&amp;amp;current=polygon.png&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I appreciate your help, it sounds like exactly what I want, but I get this for output:&lt;/p&gt;
&lt;h3&gt;&amp;gt; animate(pointplot3d, [plotter[c], style = line, linestyle = solid, thickness = 5], c = 1 .. 15);&lt;br /&gt;
Error, (in plots/animate) points are not in the correct format&lt;/h3&gt;
&lt;p&gt;It must be a syntax error of sorts, because when i do this:&lt;/p&gt;
&lt;p&gt;&lt;img alt="" src="file:///tmp/moz-screenshot-6.jpg" /&gt;&lt;/p&gt;
&lt;h3&gt;&amp;gt; pointplot3d(plotter[1],style=line,linestyle=solid,thickness=5);&lt;/h3&gt;
&lt;p&gt;I get an output of this:&lt;/p&gt;
&lt;p&gt;http://s77.photobucket.com/albums/j71/MisterHomes/?action=view&amp;amp;current=polygon.png&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>66000</guid>
      <pubDate>Thu, 14 May 2009 21:41:33 Z</pubDate>
      <itunes:author>Matthew S</itunes:author>
      <author>Matthew S</author>
    </item>
    <item>
      <title>That worked perfectly.</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer66002</link>
      <itunes:summary>&lt;p&gt;That worked perfectly. Thanks very much for your help.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;That worked perfectly. Thanks very much for your help.&lt;/p&gt;</description>
      <guid>66002</guid>
      <pubDate>Thu, 14 May 2009 23:36:00 Z</pubDate>
      <itunes:author>Matthew S</itunes:author>
      <author>Matthew S</author>
    </item>
    <item>
      <title>more animate ideas - define your own custom plot proc</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer66003</link>
      <itunes:summary>&lt;p&gt;Here is how I would continue to do this, with animate. Define your own command to create individual frames in the animation:&lt;/p&gt;
&lt;p&gt;PlotFrame := i -&amp;gt; plots:-pointplot3d( plotter[i], style=line, linestyle=solid, thickness=5 );&lt;/p&gt;
&lt;p&gt;Once you have debugged PlotFrame, you can call animate as follows:&lt;/p&gt;
&lt;p&gt;animate( PlotFrame, [c], c=[$1..N], trace=N-1 );&lt;/p&gt;
&lt;p&gt;where N is the total number of frames. Note the use of a list to avoid the problem Robert pointed out with Maple using a float for the parameter range. (Maybe you can replace N with an appropriate dimension of plotter.)&lt;/p&gt;
&lt;p&gt;Lastly, the trace option should be set to N-1 (not 1 as I wrote in my original post). The total number of frames to be shown at the end of the animation is one more than this setting, so N-1 means that all N frames will be shown at the end.&lt;/p&gt;
&lt;p&gt;I think this should be pretty close to what you are trying to do.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Here is how I would continue to do this, with animate. Define your own command to create individual frames in the animation:&lt;/p&gt;
&lt;p&gt;PlotFrame := i -&amp;gt; plots:-pointplot3d( plotter[i], style=line, linestyle=solid, thickness=5 );&lt;/p&gt;
&lt;p&gt;Once you have debugged PlotFrame, you can call animate as follows:&lt;/p&gt;
&lt;p&gt;animate( PlotFrame, [c], c=[$1..N], trace=N-1 );&lt;/p&gt;
&lt;p&gt;where N is the total number of frames. Note the use of a list to avoid the problem Robert pointed out with Maple using a float for the parameter range. (Maybe you can replace N with an appropriate dimension of plotter.)&lt;/p&gt;
&lt;p&gt;Lastly, the trace option should be set to N-1 (not 1 as I wrote in my original post). The total number of frames to be shown at the end of the animation is one more than this setting, so N-1 means that all N frames will be shown at the end.&lt;/p&gt;
&lt;p&gt;I think this should be pretty close to what you are trying to do.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</description>
      <guid>66003</guid>
      <pubDate>Thu, 14 May 2009 23:59:21 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>Doug, you are my hero.</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer66004</link>
      <itunes:summary>&lt;p&gt;Doug, you are my hero. You are the greatest.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Doug, you are my hero. You are the greatest.&lt;/p&gt;</description>
      <guid>66004</guid>
      <pubDate>Fri, 15 May 2009 00:21:00 Z</pubDate>
      <itunes:author>Matthew S</itunes:author>
      <author>Matthew S</author>
    </item>
    <item>
      <title>Hello.
I would greatly</title>
      <link>http://www.mapleprimes.com/questions/37356-Animate3d-Is-This-Possible-Using-Pointplots?ref=Feed:MaplePrimes:animate3d, is this possible using pointplots?:Comments#answer66005</link>
      <itunes:summary>Hello.

I would greatly appreciate assistance with the procedure for defining a 1D array where each element is a 3D coordinate, as has been referred to in the first post of this thread by Poster Matthew by the name "plotter[1..20]".

Please note that I have attempted the following code to no avail:

plotter := array((10, 2, -3), (5, -5, 6), (17, -8, 1));

Look forward to a prompt response.

Best regards,
wirefree</itunes:summary>
      <description>Hello.

I would greatly appreciate assistance with the procedure for defining a 1D array where each element is a 3D coordinate, as has been referred to in the first post of this thread by Poster Matthew by the name "plotter[1..20]".

Please note that I have attempted the following code to no avail:

plotter := array((10, 2, -3), (5, -5, 6), (17, -8, 1));

Look forward to a prompt response.

Best regards,
wirefree</description>
      <guid>66005</guid>
      <pubDate>Sat, 20 Mar 2010 07:10:27 Z</pubDate>
      <itunes:author>wirefree</itunes:author>
      <author>wirefree</author>
    </item>
  </channel>
</rss>