Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Fills/ISvgLinearGradientElement.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: 463 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// The SvgLinearGradientElement interface corresponds to the 'linearGradient' element.
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>100</completed>
10  public interface ISvgLinearGradientElement : ISvgGradientElement
11  {
12    ISvgAnimatedLength X1{get;}
13    ISvgAnimatedLength Y1{get;}
14    ISvgAnimatedLength X2{get;}
15    ISvgAnimatedLength Y2{get;}
16  }
17}
Note: See TracBrowser for help on using the repository browser.