Last change
on this file since 13777 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
571 bytes
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 |
|
---|
| 3 | namespace SharpVectors.Dom.Svg
|
---|
| 4 | {
|
---|
| 5 | /// <summary>
|
---|
| 6 | /// Summary description for SvgPathSegLinetoAbs.
|
---|
| 7 | /// </summary>
|
---|
| 8 | public sealed class SvgPathSegArcAbs : SvgPathSegArc, ISvgPathSegArcAbs
|
---|
| 9 | {
|
---|
| 10 | internal SvgPathSegArcAbs(double x, double y, double r1, double r2, double angle,
|
---|
| 11 | bool largeArcFlag, bool sweepFlag) :
|
---|
| 12 | base(SvgPathSegType.ArcAbs, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
|
---|
| 13 | {
|
---|
| 14 |
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | public override SvgPointF AbsXY
|
---|
| 18 | {
|
---|
| 19 | get
|
---|
| 20 | {
|
---|
| 21 | return new SvgPointF(X, Y);
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.