Question: animate listlist plot

I was wondering if there is a way to animate a plot composed of points from a listlist. The points are x/y cordinates read from a file and then placed into a listlist for plotting. In other words, I'd like to use the animation controls to animate the drawing of the plot shown below. tListList := [[2.3, 1.1], [3.4, 2.3], [4.3, 5.6], [5.3, 6.7], [7.2, 8.9], [12.4, 2.5], [13.4, 12.5]]: with(plots); with(CurveFitting); tSpline := BSplineCurve(tListList, v): plot(tSpline)
Please Wait...