Last change
on this file since 12803 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
367 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace 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.