Skip to main content
Email Password   helpLost your password?

Introduction

Silverlight provides a good animation foundation, but lacks a convenient method to animate an object along an arbitrary geometric path. Windows Presentation Foundation, which is a superset of Silverlight, provides the animation classes, DoubleAnimationUsingPath and PointAnimationUsingPath. With these classes, it is easy to animate an object along a geometric path. This article provides the equivalent animation classes for Silverlight. I suspect future versions of Silverlight will provide this functionality, but until then, the code provided here will do the job.

PathAnimPic.jpg

Background

Currently, Silverlight does not provide animation classes for animating an object along an arbitrary geometric path, but Silverlight does provide key frame animation classes. With the key frame animation classes, you specify beginning and ending values, and then the animation class uses interpolation to calculate all the values in between. A collection of key frames can be assembled together to describe a motion path, but manually building these key frames for each motion path is tedious.

To programmatically generate the key frames describing the motion path, a method to ‘flatten’ the geometric path is needed. Flattening basically means the geometry is described by a series of line segments. The figure below shows an example of a flattened Bezier segment. Once we have the flattened path, then we can easily build the key frames for the storyboard.

flattenedpath.PNG

About the Code

SolnPic.JPG

The heart of the code is contained in the ‘PathAnimation’ project. In this project, the abstract BaseAnimationUsingPath class defines a number of dependency properties to control the animation (see below). Notice that this class inherits form DependencyObject rather than a Silverlight animation class. This is because most of the animation classes in Silverlight are sealed, and not extendable like the WPF animation classes. This has implications for the usage of the DoubleAnimationUsingPath and PointAnimationUsingPath animation classes, like they cannot be added to a Storyboard! They can be added as a Resource or created in the code-behind (example provided in the demo app).

BaseClassPic.JPG

The other important project here is ‘PathGeometryHelper’. This project implements the path flattening routine. Charles Petzold developed a path flattening method in his article and gave permission to reuse the code. Charles’ method was written for WPF, and so it needed to be ported to Silverlight. In porting this code to Silverlight, more missing functionality was found. Namely, Silverlight lacks some methods in the Matrix class. Also, Silverlight has no Vector class. Equivalent functionality for these classes (and a few others) has been provided in the ‘MatrixMathHelpers’ project.

An important point to make about the flattening routine is the ‘Tolerance’ parameter. This parameter has been exposed all the way up to the path animation classes. Basically, this parameter controls the number of segments used to approximate the original geometry path. The tolerance value must be greater than zero. A smaller tolerance value will yield greater accuracy (i.e., more line segments), and a larger value will yield less accuracy (i.e., poorer approximation of the geometry path). It is not recommended to make the tolerance too small because this will cause more key frames to be added to the storyboard, slow down the animation, and use too much memory. Play with the demo app and see how adjusting the tolerance affects the accuracy, but be careful not to set the value too small!

Another important piece of code is contained in PathConverter.cs. Currently, Silverlight has no built-in functionality to convert the mini-language string into a PathGeometry, but thankfully, a converter has been provided and included here in PathConverter.cs. With this handy converter, we can feed the animation classes arbitrarily complicated geometries created with Blend or other tools.

Using the Code

Two classes have been provided to animate an object along a geometric path: DoubleAnimationUsingPath and PointAnimationUsingPath. Both share a number of common dependency properties. These properties are equivalent to the Silverlight provided animation properties, so they should be familiar:

In addition to the properties above, all of the standard animation methods: Begin, Stop, Pause, Resume, and Seek have been provided.

DoubleAnimationUsingPath will only animate object properties of type double (e.g., height, width, X, Y, etc.). This animation class has one additional dependency property: Source. The Source property specifies to use either the X or Y output value of the PathGeometry to drive the animation.

As discussed in the previous section, the animation classes provided here cannot be used in a Storyboard like other Silverlight animation classes. They can, though, be added as a Resource or created in the code-behind (see the demo app for an example).

History

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generaltest Pin
rahul jain
15:48 23 Oct '09  
QuestionArcs flattening problem Pin
Member 947179
5:55 21 Sep '09  
AnswerRe: Arcs flattening problem Pin
lneir
18:59 21 Sep '09  
GeneralSilverlight 3 Pin
jboggs77
13:38 10 May '09  
GeneralRe: Silverlight 3 Pin
lneir
15:33 25 May '09  
GeneralI added some feature (Angluar Animation) Pin
Won Dong
12:26 2 Mar '09  
GeneralRe: I added some feature (Angluar Animation) Pin
lneir
19:24 2 Mar '09  
GeneralCompleted Event Pin
dahlbyk
16:59 11 Dec '08  
GeneralRe: Completed Event Pin
lneir
19:46 3 Mar '09  
QuestionExcellent! One question Pin
Giancarlo Aguilera
14:01 4 Dec '08  
AnswerRe: Excellent! One question Pin
lneir
14:23 4 Dec '08  
GeneralIncreasing the speed of the animation Pin
Member 1232788
6:05 3 Dec '08  
GeneralRe: Increasing the speed of the animation Pin
lneir
7:15 3 Dec '08  
GeneralExcellent Pin
Mohammad Dayyan
10:07 26 Nov '08  
GeneralPath animation under silverlight Pin
Member 4003367
9:05 11 Nov '08  
GeneralRe: Path animation under silverlight Pin
lneir
9:12 11 Nov '08  
GeneralVery Nice Pin
Paul Conrad
19:11 10 Nov '08  
GeneralLooked for this a long time! Pin
Q_bus
0:40 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
lneir
7:00 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
Q_bus
9:37 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
Q_bus
10:11 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
lneir
16:59 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
Q_bus
21:45 10 Nov '08  
GeneralRe: Looked for this a long time! Pin
lneir
6:24 11 Nov '08  
GeneralRe: Looked for this a long time! Pin
SBJ
21:03 15 Jun '09  


Last Updated 4 Mar 2009 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009