Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgRect.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: 543 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <developer>kevin@kevlindev.com</developer>
3// <completed>100</completed>
4
5namespace SharpVectors.Dom.Svg
6{
7  /// <summary>
8  /// Rectangles are defined as consisting of a (x,y) coordinate pair identifying a minimum X value, a minimum Y value, and a width and height, which are usually constrained to be non-negative.
9  /// </summary>
10  public interface ISvgRect
11  {
12    double X { get; set; }
13    double Y { get; set; }
14    double Width { get; set; }
15    double Height { get; set; }
16  }
17}
Note: See TracBrowser for help on using the repository browser.