Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Filters/ISvgFECompositeElement.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: 528 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// </summary>
7  /// <developer>don@donxml.com</developer>
8  /// <completed>100</completed>
9  public interface ISvgFECompositeElement:
10    ISvgElement,
11    ISvgFilterPrimitiveStandardAttributes
12  {
13    ISvgAnimatedString In1{get;}
14    ISvgAnimatedString In2{get;}
15    ISvgAnimatedEnumeration Operator{get;}
16    ISvgAnimatedNumber K1{get;}     
17    ISvgAnimatedNumber K2{get;}     
18    ISvgAnimatedNumber K3{get;}     
19    ISvgAnimatedNumber K4{get;}     
20  }
21}
Note: See TracBrowser for help on using the repository browser.