Difference between revisions of "SVG Animation"

From Inkscape Wiki
Jump to navigation Jump to search
(Undo revision 67471 by Haleigha28 (Talk))
 
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This page is a '''work in progress'''. [[User:ToF|ToF]]
This page is a '''work in progress'''. [[User:ToF|ToF]]
See also the [[SVG_Animation_UI|UI ideas page]] (specific to SMIL animation).


== SVG Animation ==
== SVG Animation ==
Line 5: Line 7:
Animation in SVG is defined in the Animation Module of the [http://www.w3.org/TR/SVG11/animate.html SVG specification]. Animation in SVG conforms to the [http://www.w3.org/TR/2001/REC-smil-animation-20010904/ SMIL specification] (Synchronized Multimedia Integration Language) and extends it (SVG is said to be a ''host'' language of SMIL).
Animation in SVG is defined in the Animation Module of the [http://www.w3.org/TR/SVG11/animate.html SVG specification]. Animation in SVG conforms to the [http://www.w3.org/TR/2001/REC-smil-animation-20010904/ SMIL specification] (Synchronized Multimedia Integration Language) and extends it (SVG is said to be a ''host'' language of SMIL).


Here I only focus on procedural animation and not programmatic animation (using a scripting language manipulating the DOM).  
Here I only focus on procedural animation as defined by SMIL and not free-form scripted animation (using e.g. Javascript to manipulate the DOM).  


In SMIL an animation is an object which defines the evolution of a given attribute of a given object (here an SVG element - path, rect, group...) over time. Multiple animations can control the evolution of particular attribute: for example, one will tell the object to turn for 1 second starting at t=0 second and another to move across the document for 2 seconds starting at a later time. So we have this relation:
In SMIL an animation is an object which defines the evolution of a given attribute of a given object (here an SVG element - path, rect, group...) over time. Multiple animations can control the evolution of particular attribute: for example, one will tell the object to turn for 1 second starting at t=0 second and another to move across the document for 2 seconds starting at a later time. So we have this relation:
Line 59: Line 61:
[[Image:interpolation.png]]
[[Image:interpolation.png]]


* which extent of time ?
* The animation's time interval
* Which extent of time ?
The first aspect that characterizes an animation is the interval of time on which it applies: when does it begin, when does it end or how long does it run.
The first aspect that characterizes an animation is the interval of time on which it applies: when does it begin, when does it end or how long does it run.
Any of the above mentioned [[#Animation elements|animation elements] accept the attributes <code>begin</code>, <code>end</code> and <code>dur</code>.
Any of the above mentioned [[#Animation elements|animation elements] accept the attributes <code>begin</code>, <code>end</code> and <code>dur</code>.
Line 66: Line 67:
There are many ways to define a particular point in time and this is what makes SMIL a very rich animation framework (see below). The simplest is to specify a clock-value which syntax is quite intuitive [http://www.w3.org/TR/SVG11/animate.html#ClockValueSyntax (SPEC)]. Depending on the combination of those 3 attributes, the interval of time of the animation will be [begin, end], [begin, begin+dur], [end-dur, end], etc.
There are many ways to define a particular point in time and this is what makes SMIL a very rich animation framework (see below). The simplest is to specify a clock-value which syntax is quite intuitive [http://www.w3.org/TR/SVG11/animate.html#ClockValueSyntax (SPEC)]. Depending on the combination of those 3 attributes, the interval of time of the animation will be [begin, end], [begin, begin+dur], [end-dur, end], etc.


To specify the values taken over the time interval, one need to tell the value that the parameter must have at the begin and at the end of the interval. here again those values are specified by combinations of three attributes: <code>from</code>, <code>to</code> and <code>by</code>. The attribute <code>from</code> correspond to the begin value, the attribute <code>to</code> correspond to the end value. The attribute <code>by</code> let you define either the initial and final values relative to the other one, that is to = from + by or from = to - by. The following image illusttrate this setup for our hypothetical attribute A
* The attribute values
To specify the values taken by the attribute over the time interval, one need to tell the value that the parameter must have at the begin and at the end of the interval. here again those values are specified by combinations of three attributes: <code>from</code>, <code>to</code> and <code>by</code>. The attribute <code>from</code> correspond to the begin value, the attribute <code>to</code> correspond to the end value. The attribute <code>by</code> let you define either the initial and final values relative to the other one, that is to = from + by or from = to - by. The following image illusttrate this setup for our hypothetical attribute A


[[Image:time_interval.png]]
[[Image:time_interval.png]]
Line 82: Line 84:
[[Image:time_interval2.png]]
[[Image:time_interval2.png]]


The keyTimes list can actually be omitted. In this cases the keytimes are evenly in interval [0,1] (equivalently, evenly in the interval [begin, end])
The keyTimes list can actually be omitted, in which case the keytimes are evenly distributed in the interval [0,1] (or equivalently, evenly in the interval [begin, end])


The (keytime, keyvalue) pairs are joined by straight lines in the above graph, which means that we use '''linear interpolation''' for computing the inbetween values.  
The (keytime, keyvalue) pairs are joined by straight lines in the above graph, which means that '''linear interpolation''' is used for computing the inbetween values.  


When applied to the position of an object, linear interpolation results in un-natural robot-like motions (which may the effect wanted). SMIL allows smoother animations by defining '''spline-based interpolation''' between two (keytime, keyvalue) pairs. For each interval (t0, v0) - (t1, v1) a spline can be defined by two control points defining the tangents of the spline at t0 and t1. Those control points are passed in the attribute <code>keySplines</code>
When applied to the position of an object, linear interpolation results in un-natural robot-like motions (which may be the effect wanted). SMIL allows smoother animations to be defined by using '''spline-based interpolation''' between two (keytime, keyvalue) pairs. For each interval (t0, A0) - (t1, A1) a spline can be defined by two control points defining the tangents of the spline at t0 and t1. Those control points are passed in the attribute <code>keySplines</code>.


[[Image:spline_interpolation.png]]
[[Image:spline_interpolation.png]]
Line 92: Line 94:


Two other interpolation modes are possible:
Two other interpolation modes are possible:
* '''discrete''': this is a degenerate form of interpolation, because the resulting animation function is not continuous. For each interval (t0,v0) - (t1, v1), the attribute value is set to v0 for the whole interval. It ''jumps'' to v1 right when t1 is reached and so on.
* '''discrete''': this is a degenerate form of interpolation, because the resulting animation function is not continuous. For each interval (t0,A0) - (t1, A1), the attribute value is set to A0 for the whole interval. It ''jumps'' to A1 right when t1 is reached and so on.
* '''paced''': in this interpolation mode, the attribute is interpolated so that its evolution over time has '''constant speed'''. Because the animation function is defined implicitly, the attribute <code>keyTimes</code> is not taken into account. This mode is mainly useful for the <code>animateMotion</code> element.
* '''paced''': in this interpolation mode, the attribute is interpolated so that its evolution over time has '''constant speed'''. Because the animation function is defined implicitly, the attribute <code>keyTimes</code> is not taken into account. This mode is mainly useful for the <code>animateMotion</code> element.


Line 105: Line 107:




<table style="border: solid black 1px;">
<table border="1px">
<tr>
 


<!-- example 1 -->
<!-- example 1 -->
<tr>
<td>
<td>
A ball bounces on the floor: there are 2 motions
A ball bounces on the floor: there are 6 motions here: fall, squeeze, squeeze-offset and bounce unsqueeze and unsqueeze-offset that are the revert version of 3 first. A classic animation trick is to start squeezing the ball a little before it touches the floor, expressed here by the synchronization <code>begin=fall.end - 0.1s</code>.
</td>
<td rowspan="2">
<pre>
<path
  ...
  transform="translate(0,4.5456868)">
      <animateTransform
        type="translate"
        additive="sum"
        from="0, 0"
        to="0, 136"
        dur="1s"
        begin="0s"
        attributeType="XML"
        attributeName="transform"
        id="fall"
        keySplines="0.5 0  0.8 0.5 "
        calcMode="spline" />
      <animateTransform
        id="squeeze"
        type="scale"
        from="1,1"
        to="1.1,0.9"
        begin="fall.end-0.1s"
        attributeName="transform"
        attributeType="XML"
        dur="0.2s"
        additive="sum" />
      <animateTransform
        additive="sum"
        dur="0.2s"
        attributeType="XML"
        attributeName="transform"
        begin="fall.end-0.1s"
        to="-13,0"
        from="0,0"
        type="translate"
        id="squeeze-offset"
        accumulate="sum" />
</pre>
</td>
</td>
<td></td>
<tr>
<td>
<td>
[[Image:bouncing_ball1.png]]
[[Image:bouncing_ball1.png]]
[http://wiki.inkscape.org/wiki/images/Bouncing_ball1.svg SVG file] |
[http://www.cdehais.fr/~tof/svg/bouncing_ball1.ogg ogg video]
</td>
</td>
</tr>


<!-- example 2 -->
<!-- example 2 -->
<tr>
<td>
<td>
A ball bounces on the floor: there are 2 motions
A ball bounces between two wall, following a path.
</td>
<td rowspan="2">
<pre>
<path
      ...
      sodipodi:type="arc"
      id="ball"
      ...
>
      <animateMotion
        keyTimes="0; 0.20; 1"
        keyPoints="0; 0.33; 1"
        repeatCount="indefinite"
        additive="sum"
        rotate="0"
        begin="0s"
        dur="2s"
        calcMode="linear"
        id="animateMotion2680">
        <mpath
          xlink:href="#motion_path"
          id="mpath2682" />
      </animateMotion>
</path>
<path
  d="M 82.080559,103.82375 ..."
  id="motion_path" ... />
</pre>
</td>
</td>
<td></td>
</tr>
<tr>
<td>
<td>
[[Image:bouncing_ball2.png]]
[[Image:bouncing_ball2.png]]
[http://wiki.inkscape.org/wiki/images/Bouncing_ball2.svg SVG file] |
[http://www.cdehais.fr/~tof/svg/bouncing_ball2.ogg ogg video]
</td>
</td>
</tr>


<!-- example 3 -->
<!-- example 3 -->
<tr>
<td>
<td>
A ball bounces on the floor: there are 2 motions
A ball bounces between 2 walls. The motion is defined as a combination a of vertical translation and a horizontal translation. This works because the second animation has an <code>additive="sum"</code> attribute, so the corresponding matrix is composited with the matrix defined by the underlying animations.
</td>
<td rowspan="2">
<pre>
...
<!-- two animation sharing the same path -->
  <animateMotion
    id="animateMotion2302"
    xlink:href="#arrow2"
    dur="4s"
    keyTimes="0; 0.5; 1"
    keyPoints="0; 1; 0"
    calcMode="linear"
    repeatCount="indefinite">
    <mpath
      id="mpath2305"
      xlink:href="#horiz-bounce" />
  </animateMotion>
  <animateMotion
    calcMode="linear"
    keyPoints="0; 1; 0"
    keyTimes="0; 0.5; 1"
    dur="4s"
    xlink:href="#ball"
    id="animateMotion2309"
    repeatCount="indefinite">
    <mpath
      xlink:href="#horiz-bounce"
      id="mpath2311" />
  </animateMotion>
...
  <animateMotion
    keySplines="0.5 0 0.75 0.75, 0 0.5 0.5 0.75"
    keyPoints="0;  1; 0"
    calcMode="spline"
    keyTimes="0;  0.5; 1"
    id="animateMotion2298"
    begin="0s"
    dur="2s"
    xlink:href="#ball"
    additive="sum"
    repeatCount="indefinite">
    <mpath
      id="mpath2300"
      xlink:href="#vert-bounce" />
  </animateMotion>
</pre>
 
</td>
</td>
<td></td>
</tr>
<tr>
<td>
<td>
[[Image:bouncing_ball3.png]]
[[Image:bouncing_ball3.png]]
[http://wiki.inkscape.org/wiki/images/Bouncing_ball3.svg SVG file] |
[http://www.cdehais.fr/~tof/svg/bouncing_ball3.ogg ogg video]
</td>
</td>
</tr>
</tr>


Line 147: Line 276:


* There is no direct way to specify a <b>''ping-pong'' animation</b> in SVG, that is to tell an animation to go back in time when it reaches it's end. To implement this, I see 2 solutions:
* There is no direct way to specify a <b>''ping-pong'' animation</b> in SVG, that is to tell an animation to go back in time when it reaches it's end. To implement this, I see 2 solutions:
**double the duration d of the animation (<code>dur</code> attribute) et apply a scale and a symetry around t=0.5 to the animation function. For example the simple linear interpolation defined by <code>keyTimes="0; 1"</code> and <code>keyPoints="0;1"</code> becomes <code>keyTimes="0; 0.5; 1"</code> and <code>keyPoints="0;1;0"</code>. This doesn't work for <code>paced</code> animation though (which make use of an implicit, user-agent dependent animation function).
**double the duration d of the animation (<code>dur</code> attribute) and apply a scale and a symetry around t=0.5 to the animation function. For example the simple linear interpolation defined by <code>keyTimes="0; 1"</code> and <code>keyPoints="0;1"</code> becomes <code>keyTimes="0; 0.5; 1"</code> and <code>keyPoints="0;1;0"</code>. This doesn't work for <code>paced</code> animation though (which make use of an implicit, user-agent dependent animation function).
** copy the original animation (call it e.g. <code>motion_forward</code>) and swap the <code>from</code> and <code>to</code> values in the copy. Then specify <code>begin="motion_forward.end"</code> to tell the backward animation to start right at the end of the forward animation. This should work for every animation type.
** copy the original animation (call it e.g. <code>motion_forward</code>) and swap the <code>from</code> and <code>to</code> values in the copy. Then specify <code>begin="motion_forward.end"</code> to tell the backward animation to start right at the end of the forward animation. This should work for every animation type.


The question is: what maps best to a UI ?
The question is: what maps best to a UI ?

Latest revision as of 08:56, 28 February 2011

This page is a work in progress. ToF

See also the UI ideas page (specific to SMIL animation).

SVG Animation

Animation in SVG is defined in the Animation Module of the SVG specification. Animation in SVG conforms to the SMIL specification (Synchronized Multimedia Integration Language) and extends it (SVG is said to be a host language of SMIL).

Here I only focus on procedural animation as defined by SMIL and not free-form scripted animation (using e.g. Javascript to manipulate the DOM).

In SMIL an animation is an object which defines the evolution of a given attribute of a given object (here an SVG element - path, rect, group...) over time. Multiple animations can control the evolution of particular attribute: for example, one will tell the object to turn for 1 second starting at t=0 second and another to move across the document for 2 seconds starting at a later time. So we have this relation:

            1:n
 Element <-------> Animation

For a given animation the element which is controlled is called the target element of the animation. The specific attribute/property which is controlled is called the target attribute/property.

In fact, it's completely legal to have two animations that control the same attribute of the same element, and they can overlap in time: at any particular time there exists a stack of animations applying to a particular attribute, and SMIL defines the order in which each animation is applied.

Animation elements

SVG defines 5 animation elements:

  • animate

This element is used to animate any scalar attribute or property, such as the width attribute of an svg:rect element or the CCS property opacity

  • animateMotion

This elements only controls the position of a SVG element, by telling it to follow a given path

  • animateColor

This element controls the animation of color valued attributes and properties.

  • animateTransform

This element controls the transformation which applies to the target element. It replaces or adds up to the transform attribute of the element.

  • set

This element is used to set a particular value for the target attribute during a specified time interval. It is mainly used for animating attributes which do not span a continuous domain, such as boolean values like the visibility property.

Specifying the target element and property

There are 2 ways to tell which element a given animation will target. The first one is to embed the animation element as a child tag of the element to animate. Here is an example:

<circle cx="100px" cy="100px" r="20px">
   <animate attributeName="r" attributeType="XML" begin="1s" dur="2s" from="20px" to="50px">
</circle>

The animate element targets the radius (r) property of the parent circle element. Starting 1 second after the document start, the radius will grow for 2 seconds from 20 pixels to 50 pixels. When nothing else is specified, the animation only applies in its interval of time, here [1-3] seconds; from 0 to 1 second and then from 3 second and after, the circle's radius is set back to its static attribute value, here 20 pixels.

The other way to specify the target element is to reference it in via an xlink:href attribute of the animation element. the previous animation could be written this way:

<circle id="balloon" cx="100px" cy="100px" r="20px" />
<animate xlink:href="#balloon" attributeName="r" attributeType="XML" begin="1s" dur="2s" from="20px" to="50px" />

To specify which property or attribute of the target element is controlled, we use the two attributes attributeName and attributeType. attributeName explains itself, it's the name of the controlled attribute. attributeType tells whether attributeName is searched among the SVG attributes of the element (attributeType="XML") or among the CSS properties of the element (attributeType="CSS"). (SPEC)

Timing an animation

The first thing to stress is that SMIL (and therefore SVG) animation is time-based, as opposed to frame-based. Frame-based animation is something traditional animators are used to, because they actually draw each image of the animation on a separate celluloid sheet, and the timing is related to the rate of images per second the camera will capture. When animation is done on a computer, the animator doesn't draw every image but only some key images (or keyframes) and then the animation software creates all the necessary images for him (the so-called in-betweens). That means the animator can focus back to a (real-)time based timing. Each keyframe is positioned on a timeline with real time values (instead of frame numbers). Of course at the end the animation is discrete and there is a fixed number of images computed inbetween two keyframes, but the neat property of specifying keyframes at time position is that the final animation frame rate is scalable and the animator doesn't have to care about it anymore. He just tells the software to produce 24 images each second if he targets a theatre film or say 10 images per second for low-bandwidth web animation. The animator doesn't need to reposition the keyframes.

In-betweening by interpolation

Creating the inbetween images on a computer is done by mean of interpolation. Interpolation is a mathematical tool that can reconstruct a the continuous evolution of a parameter given a set of discrete values of this parameter over time. The following image illustrates that. We know that some attribute A must take value A0, A1, A2 and A3 at times t0, t1, t2 and t3. The red curves is one of the possible continuous function that be used to compute inbetween values of A in the interval [t0, t3].

Interpolation.png

  • The animation's time interval

The first aspect that characterizes an animation is the interval of time on which it applies: when does it begin, when does it end or how long does it run. Any of the above mentioned [[#Animation elements|animation elements] accept the attributes begin, end and dur.

There are many ways to define a particular point in time and this is what makes SMIL a very rich animation framework (see below). The simplest is to specify a clock-value which syntax is quite intuitive (SPEC). Depending on the combination of those 3 attributes, the interval of time of the animation will be [begin, end], [begin, begin+dur], [end-dur, end], etc.

  • The attribute values

To specify the values taken by the attribute over the time interval, one need to tell the value that the parameter must have at the begin and at the end of the interval. here again those values are specified by combinations of three attributes: from, to and by. The attribute from correspond to the begin value, the attribute to correspond to the end value. The attribute by let you define either the initial and final values relative to the other one, that is to = from + by or from = to - by. The following image illusttrate this setup for our hypothetical attribute A

Time interval.png

The values of A are simply interpolated linearly in between begin and end. This is the more simple form of animation function that can defined: by the two extremal pairs of (time, attribute value): (begin, from) and (end, to).

More complex timing

It's possible to specify a whole set of (keytime, keyvalue) pairs to define the animation function. Each item of the pairs are actually given separately:

  • the set of attribute values (keyvalues) are given by the values attribute.
  • the set of time values (keytimes) are given by the keyTimes attribute.

Each set as the form of a semicolon-separated list of values. The thing to notice is that the keytimes are actually normalized to [0,1], which means that 0 maps to begin and 1 maps to end, and those values must start and end the list of keytimes. The image below illustrates all this:

Time interval2.png

The keyTimes list can actually be omitted, in which case the keytimes are evenly distributed in the interval [0,1] (or equivalently, evenly in the interval [begin, end])

The (keytime, keyvalue) pairs are joined by straight lines in the above graph, which means that linear interpolation is used for computing the inbetween values.

When applied to the position of an object, linear interpolation results in un-natural robot-like motions (which may be the effect wanted). SMIL allows smoother animations to be defined by using spline-based interpolation between two (keytime, keyvalue) pairs. For each interval (t0, A0) - (t1, A1) a spline can be defined by two control points defining the tangents of the spline at t0 and t1. Those control points are passed in the attribute keySplines.

Spline interpolation.png


Two other interpolation modes are possible:

  • discrete: this is a degenerate form of interpolation, because the resulting animation function is not continuous. For each interval (t0,A0) - (t1, A1), the attribute value is set to A0 for the whole interval. It jumps to A1 right when t1 is reached and so on.
  • paced: in this interpolation mode, the attribute is interpolated so that its evolution over time has constant speed. Because the animation function is defined implicitly, the attribute keyTimes is not taken into account. This mode is mainly useful for the animateMotion element.

Other aspects of animation

  • repeating
  • chaining animations.
  • event based synchronisation

Examples

Examples showcasing some of the effects that can be achieved using procedural animation in SVG.


A ball bounces on the floor: there are 6 motions here: fall, squeeze, squeeze-offset and bounce unsqueeze and unsqueeze-offset that are the revert version of 3 first. A classic animation trick is to start squeezing the ball a little before it touches the floor, expressed here by the synchronization begin=fall.end - 0.1s.

<path
   ...
   transform="translate(0,4.5456868)">
      <animateTransform
         type="translate"
         additive="sum"
         from="0, 0"
         to="0, 136"
         dur="1s"
         begin="0s"
         attributeType="XML"
         attributeName="transform"
         id="fall"
         keySplines="0.5 0  0.8 0.5 "
         calcMode="spline" />
      <animateTransform
         id="squeeze"
         type="scale"
         from="1,1"
         to="1.1,0.9"
         begin="fall.end-0.1s"
         attributeName="transform"
         attributeType="XML"
         dur="0.2s"
         additive="sum" />
      <animateTransform
         additive="sum"
         dur="0.2s"
         attributeType="XML"
         attributeName="transform"
         begin="fall.end-0.1s"
         to="-13,0"
         from="0,0"
         type="translate"
         id="squeeze-offset"
         accumulate="sum" />

Bouncing ball1.png SVG file | ogg video

A ball bounces between two wall, following a path.

<path
       ...
       sodipodi:type="arc"
       id="ball" 
       ... 
>
      <animateMotion
         keyTimes="0; 0.20; 1"
         keyPoints="0; 0.33; 1"
         repeatCount="indefinite"
         additive="sum"
         rotate="0"
         begin="0s"
         dur="2s"
         calcMode="linear"
         id="animateMotion2680">
        <mpath
           xlink:href="#motion_path"
           id="mpath2682" />
      </animateMotion>
</path>
<path
   d="M 82.080559,103.82375 ..."
   id="motion_path" ... />

Bouncing ball2.png SVG file | ogg video

A ball bounces between 2 walls. The motion is defined as a combination a of vertical translation and a horizontal translation. This works because the second animation has an additive="sum" attribute, so the corresponding matrix is composited with the matrix defined by the underlying animations.

 ...
<!-- two animation sharing the same path -->
  <animateMotion
     id="animateMotion2302"
     xlink:href="#arrow2"
     dur="4s"
     keyTimes="0; 0.5; 1"
     keyPoints="0; 1; 0"
     calcMode="linear"
     repeatCount="indefinite">
    <mpath
       id="mpath2305"
       xlink:href="#horiz-bounce" />
  </animateMotion>
  <animateMotion
     calcMode="linear"
     keyPoints="0; 1; 0"
     keyTimes="0; 0.5; 1"
     dur="4s"
     xlink:href="#ball"
     id="animateMotion2309"
     repeatCount="indefinite">
    <mpath
       xlink:href="#horiz-bounce"
       id="mpath2311" />
  </animateMotion>
 ...
  <animateMotion
     keySplines="0.5 0 0.75 0.75, 0 0.5 0.5 0.75"
     keyPoints="0;  1; 0"
     calcMode="spline"
     keyTimes="0;  0.5; 1"
     id="animateMotion2298"
     begin="0s"
     dur="2s"
     xlink:href="#ball"
     additive="sum"
     repeatCount="indefinite">
    <mpath
       id="mpath2300"
       xlink:href="#vert-bounce" />
  </animateMotion>

Bouncing ball3.png SVG file | ogg video

Useful tools

  • Squiggle , as part of Batik 1.7 has a nearly complete support for SMIL Animation. The examples were all rendered using Squiggle.
  • Inkscape ! I used the xml editor to manually add the animation elements for my test. It's a bit more cumbersome than editing the svg file in a text editor, but doing that in Inkscape eases the computation of key positions (just move the object around and read the position values).

Various thoughts

  • There is no direct way to specify a ping-pong animation in SVG, that is to tell an animation to go back in time when it reaches it's end. To implement this, I see 2 solutions:
    • double the duration d of the animation (dur attribute) and apply a scale and a symetry around t=0.5 to the animation function. For example the simple linear interpolation defined by keyTimes="0; 1" and keyPoints="0;1" becomes keyTimes="0; 0.5; 1" and keyPoints="0;1;0". This doesn't work for paced animation though (which make use of an implicit, user-agent dependent animation function).
    • copy the original animation (call it e.g. motion_forward) and swap the from and to values in the copy. Then specify begin="motion_forward.end" to tell the backward animation to start right at the end of the forward animation. This should work for every animation type.

The question is: what maps best to a UI ?