Last change
on this file since 13825 was
12762,
checked in by aballeit, 10 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
501 bytes
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>100</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 |
|
---|
6 | namespace SharpVectors.Dom.Svg
|
---|
7 | {
|
---|
8 | /// <summary>
|
---|
9 | /// The SvgPathSegCurvetoCubicAbs interface corresponds to an
|
---|
10 | /// "absolute cubic Bezier curveto" (C) path data command.
|
---|
11 | /// </summary>
|
---|
12 | public interface ISvgPathSegCurvetoCubicAbs : ISvgPathSeg
|
---|
13 | {
|
---|
14 | double X{get;set;}
|
---|
15 | double Y{get;set;}
|
---|
16 | double X1{get;set;}
|
---|
17 | double Y1{get;set;}
|
---|
18 | double X2{get;set;}
|
---|
19 | double Y2{get;set;}
|
---|
20 | }
|
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.