Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Paths/SvgPathSegMovetoAbs.cs @ 13857

Last change on this file since 13857 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 367 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5    public sealed class SvgPathSegMovetoAbs : SvgPathSegMoveto, ISvgPathSegMovetoAbs
6  {
7        public SvgPathSegMovetoAbs(double x, double y)
8            : base(SvgPathSegType.MoveToAbs, x, y)
9    {
10    }
11
12    public override SvgPointF AbsXY
13    {
14      get
15      {
16        return new SvgPointF(X, Y);
17      }
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.