Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Shapes/ISvgCircleElement.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: 847 bytes
Line 
1using SharpVectors.Dom.Events;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// The SvgCircleElement interface corresponds to the 'circle' element.
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>90</completed>
10  public interface ISvgCircleElement  :
11    ISvgElement,
12    ISvgTests,
13    ISvgLangSpace,
14    ISvgExternalResourcesRequired,
15    ISvgStylable,
16    ISvgTransformable,
17    IEventTarget
18  {
19    /// <summary>
20    /// Corresponds to attribute cx on the given 'circle' element.
21    /// </summary>
22    ISvgAnimatedLength Cx{get;}
23
24    /// <summary>
25    /// Corresponds to attribute cy on the given 'circle' element.
26    /// </summary>
27    ISvgAnimatedLength Cy{get;}
28
29    /// <summary>
30    /// Corresponds to attribute r on the given 'circle' element.
31    /// </summary>
32    ISvgAnimatedLength R{get;}
33
34  }
35}
Note: See TracBrowser for help on using the repository browser.