Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Paths/SvgPathSegType.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: 475 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5  public enum SvgPathSegType
6  {
7    ClosePath,
8    MoveToAbs,
9    MoveToRel,
10    LineToAbs,
11    LineToRel,
12    CurveToCubicAbs,
13    CurveToCubicRel,
14    CurveToQuadraticAbs,
15    CurveToQuadraticRel,
16    ArcAbs,
17    ArcRel,
18    LineToHorizontalAbs,
19    LineToHorizontalRel,
20    LineToVerticalAbs,
21    LineToVerticalRel,
22    CurveToCubicSmoothAbs,
23    CurveToCubicSmoothRel,
24    CurveToQuadraticSmoothAbs,
25    CurveToQuadraticSmoothRel
26  }
27}
Note: See TracBrowser for help on using the repository browser.