Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Coordinates/ISvgAnimatedTransformList.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: 514 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 the various attributes which specify a set of transformations, such as the transform attribute which is available for many of Svg's elements, and which can be animated.
9  /// </summary>
10  public interface ISvgAnimatedTransformList
11  {
12     ISvgTransformList BaseVal { get; }
13     ISvgTransformList AnimVal { get; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.