Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgAnimatedLength.cs @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 849 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <developer>kevin@kevlindev.com</developer>
3// <completed>100</completed>
4 
5namespace SharpVectors.Dom.Svg
6{
7  /// <summary>
8  /// Used for attributes of basic type 'length' which can be
9  /// animated.
10  /// </summary>
11  public interface ISvgAnimatedLength
12  {
13    /// <summary>
14    /// The base value of the given attribute before applying
15    /// any animations
16    /// </summary>
17    ISvgLength BaseVal { get; }
18
19    /// <summary>
20    ///     If the given attribute or property is being animated,
21    ///     contains the current animated value of the attribute or property, and both the object itself and its contents are readonly. If the given attribute or property is not currently being animated, contains the same value as 'baseVal'.
22    /// </summary>
23    ISvgLength AnimVal { get; }
24  }
25}
Note: See TracBrowser for help on using the repository browser.