Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/SvgFilterCompositeOperator.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: 381 bytes
Line 
1// <developer>don@donxml.com</developer>
2// <completed>100</completed>
3 
4using System;
5
6namespace SharpVectors.Dom.Svg
7{
8  /// <summary>
9  /// The Filter Composite Operators
10  /// </summary>
11  public enum SvgFilterCompositeOperator
12  {
13    Unknown    = 0,
14    Over       = 1,
15    In         = 2,
16    Out        = 3,
17    Atop       = 4,
18    Xor        = 5,
19    Arithmetic = 6
20  }
21}
Note: See TracBrowser for help on using the repository browser.