Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Shapes/ISvgAnimatedPoints.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: 467 bytes
Line 
1namespace SharpVectors.Dom.Svg
2{
3  /// <summary>
4  /// The SvgAnimatedPoints interface supports elements which have a
5  /// 'points' attribute which holds a list of coordinate values and
6  /// which support the ability to animate that attribute.
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>90</completed>
10  public interface ISvgAnimatedPoints
11  {
12    ISvgPointList Points{get;}
13    ISvgPointList AnimatedPoints{get;}
14  }
15}
Note: See TracBrowser for help on using the repository browser.