<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, sliding ladder animation</title>
    <link>http://www.mapleprimes.com/questions/142194-Sliding-Ladder-Animation</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 09:13:02 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 09:13:02 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, sliding ladder animation</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, sliding ladder animation</title>
      <link>http://www.mapleprimes.com/questions/142194-Sliding-Ladder-Animation</link>
    </image>
    <item>
      <title>Combining animations</title>
      <link>http://www.mapleprimes.com/questions/142194-Sliding-Ladder-Animation?ref=Feed:MaplePrimes:sliding ladder animation:Comments#answer142195</link>
      <itunes:summary>&lt;p&gt;You want to see a combination of three animations:&lt;br&gt;(1) a picture of the sliding ladder;&lt;br&gt;(2) the position of its midpoint;&lt;br&gt;(3) the trace of the midpoint position.&lt;/p&gt;
&lt;p&gt;First, you have to choose the parameter. I take the x-coordinate of the lower endpoint.&lt;br&gt;Plot the ladder as a line through the point on the wall and the point on the floor.&lt;/p&gt;
&lt;pre&gt;with(plots):&lt;br&gt;A := animate(plot, [[p,0],[0,sqrt(4-p^2)]], p = 0..2, frames=50 ): # ladder&lt;br&gt;B := animate(pointplot, [1/2*[p,sqrt(4-p^2)]], p = 0..2, symbol=solidcircle, symbolsize=20, frames=50 ):&lt;br&gt;C := animatecurve( [1/2*p,1/2*sqrt(4-p^2), p = 0..2], frames=50 ): # trace of the midpoint&lt;br&gt;display( {A,B,C} );&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;You want to see a combination of three animations:&lt;br&gt;(1) a picture of the sliding ladder;&lt;br&gt;(2) the position of its midpoint;&lt;br&gt;(3) the trace of the midpoint position.&lt;/p&gt;
&lt;p&gt;First, you have to choose the parameter. I take the x-coordinate of the lower endpoint.&lt;br&gt;Plot the ladder as a line through the point on the wall and the point on the floor.&lt;/p&gt;
&lt;pre&gt;with(plots):&lt;br&gt;A := animate(plot, [[p,0],[0,sqrt(4-p^2)]], p = 0..2, frames=50 ): # ladder&lt;br&gt;B := animate(pointplot, [1/2*[p,sqrt(4-p^2)]], p = 0..2, symbol=solidcircle, symbolsize=20, frames=50 ):&lt;br&gt;C := animatecurve( [1/2*p,1/2*sqrt(4-p^2), p = 0..2], frames=50 ): # trace of the midpoint&lt;br&gt;display( {A,B,C} );&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</description>
      <guid>142195</guid>
      <pubDate>Thu, 10 Jan 2013 19:16:51 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
    <item>
      <title>ladder animation</title>
      <link>http://www.mapleprimes.com/questions/142194-Sliding-Ladder-Animation?ref=Feed:MaplePrimes:sliding ladder animation:Comments#comment142199</link>
      <itunes:summary>&lt;p&gt;thanks Adri!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;thanks Adri!&lt;/p&gt;</description>
      <guid>142199</guid>
      <pubDate>Fri, 11 Jan 2013 10:00:53 Z</pubDate>
      <itunes:author>brian bovril</itunes:author>
      <author>brian bovril</author>
    </item>
    <item>
      <title>Keeping the curve</title>
      <link>http://www.mapleprimes.com/questions/142194-Sliding-Ladder-Animation?ref=Feed:MaplePrimes:sliding ladder animation:Comments#comment142282</link>
      <itunes:summary>&lt;p&gt;You will see that the circular curve disappears in the last frame. This has to do with rounding errors. The last sqrt is a complex number with a small imaginary part. You can avoid this by replacing the third command by&lt;/p&gt;
&lt;pre&gt;C := animatecurve( [1/2*p,1/2*Re(sqrt(4-p^2)), p = 0..2], frames=50 ):&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;You will see that the circular curve disappears in the last frame. This has to do with rounding errors. The last sqrt is a complex number with a small imaginary part. You can avoid this by replacing the third command by&lt;/p&gt;
&lt;pre&gt;C := animatecurve( [1/2*p,1/2*Re(sqrt(4-p^2)), p = 0..2], frames=50 ):&lt;/pre&gt;</description>
      <guid>142282</guid>
      <pubDate>Mon, 14 Jan 2013 21:38:27 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
  </channel>
</rss>