Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Paths/ISvgPathSegArcRel.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: 497 bytes
RevLine 
[12762]1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3
4using System;
5
6namespace SharpVectors.Dom.Svg
7{
8  /// <summary>
9  /// The SvgPathSegArcRel interface corresponds to a "relative arcto" (a) path data command.
10  /// </summary>
11  public interface ISvgPathSegArcRel : ISvgPathSeg
12  {
13    double X{get;set;}
14    double Y{get;set;}
15    double R1{get;set;}
16    double R2{get;set;}
17    double Angle{get;set;}
18    bool LargeArcFlag{get;set;}
19    bool SweepFlag{get;set;}
20  }
21}
Note: See TracBrowser for help on using the repository browser.