Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Painting/SvgMarkerOrient.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: 492 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5  public enum SvgMarkerOrient
6  {
7    /// <summary>
8    /// The marker orientation is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
9    /// </summary>
10    Unknown,
11    /// <summary>
12    /// Attribute orient has value 'auto'.
13    /// </summary>
14    Auto,
15    /// <summary>
16    /// Attribute orient has an angle value.
17    /// </summary>
18    Angle
19  }
20}
Note: See TracBrowser for help on using the repository browser.