Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths Modified Files: SvgPathSegArc.cs SvgPathSegCurvetoCubicAbs.cs SvgPathSegCurvetoCubicRel.cs SvgPathSegCurvetoCubicSmoothAbs.cs SvgPathSegCurvetoCubicSmoothRel.cs SvgPathSegCurvetoQuadraticAbs.cs SvgPathSegCurvetoQuadraticRel.cs SvgPathSegCurvetoQuadraticSmoothAbs.cs SvgPathSegCurvetoQuadraticSmoothRel.cs SvgPathSegLinetoAbs.cs SvgPathSegLinetoHorizontalAbs.cs SvgPathSegLinetoHorizontalRel.cs SvgPathSegLinetoRel.cs SvgPathSegLinetoVerticalAbs.cs SvgPathSegLinetoVerticalRel.cs SvgPathSegMoveTo.cs Log Message: Library wide changes for scripting support and automated re-rendering Index: SvgPathSegLinetoAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -16,13 +16,15 @@ public float X { get{return x;} + set{x = value;} } private float y; public float Y { get{return y;} - } + set{y = value;} + } public override PointF AbsXY { Index: SvgPathSegCurvetoCubicAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoCubicAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoCubicAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoCubicAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -29,37 +29,43 @@ public float X { get{return x;} + set{x = value;} } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x1; public float X1 { get{return x1;} - } + set{x1 = value;} + } private float y1; public float Y1 { get{return y1;} - } + set{y1 = value;} + } private float x2; public float X2 { get{return x2;} - } + set{x2 = value;} + } private float y2; public float Y2 { get{return y2;} - } + set{y2 = value;} + } #endregion #region public methods Index: SvgPathSegCurvetoQuadraticSmoothRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoQuadraticSmoothRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoQuadraticSmoothRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoQuadraticSmoothRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -29,7 +29,8 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; /// <summary> @@ -38,7 +39,8 @@ public float Y { get{return y;} - } + set{y = value;} + } #endregion #region public methods Index: SvgPathSegCurvetoQuadraticAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoQuadraticAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoQuadraticAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoQuadraticAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -28,25 +28,29 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x1; public float X1 { get{return x1;} - } + set{x1 = value;} + } private float y1; public float Y1 { get{return y1;} - } + set{y1 = value;} + } #endregion #region public methods Index: SvgPathSegLinetoHorizontalRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoHorizontalRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoHorizontalRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoHorizontalRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -15,7 +15,8 @@ public float X { get{return x;} - } + set{x = value;} + } public override PointF AbsXY { Index: SvgPathSegCurvetoCubicSmoothRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoCubicSmoothRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoCubicSmoothRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoCubicSmoothRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -29,24 +29,28 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x2; public float X2 { get{return x2;} - } + set{x2 = value;} + } private float y2; public float Y2 { get{return y2;} + set{y2 = value;} } #endregion Index: SvgPathSegLinetoVerticalAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoVerticalAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoVerticalAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoVerticalAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -15,7 +15,8 @@ public float Y { get{return y;} - } + set{y = value;} + } public override PointF AbsXY { Index: SvgPathSegCurvetoCubicSmoothAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoCubicSmoothAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoCubicSmoothAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoCubicSmoothAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -25,25 +25,29 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x2; public float X2 { get{return x2;} - } + set{x2 = value;} + } private float y2; public float Y2 { get{return y2;} - } + set{y2 = value;} + } #endregion #region public methods Index: SvgPathSegCurvetoCubicRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoCubicRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoCubicRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoCubicRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -30,37 +30,43 @@ public float X { get{return x;} + set{x = value;} } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x1; public float X1 { get{return x1;} - } + set{x1 = value;} + } private float y1; public float Y1 { get{return y1;} - } + set{y1 = value;} + } private float x2; public float X2 { get{return x2;} - } + set{x2 = value;} + } private float y2; public float Y2 { get{return y2;} - } + set{y2 = value;} + } #endregion #region public methods Index: SvgPathSegLinetoRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -16,13 +16,15 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; public float Y { get{return y;} - } + set{y = value;} + } public override PointF AbsXY { Index: SvgPathSegArc.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegArc.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegArc.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegArc.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -39,43 +39,50 @@ public float X { get{return x;} + set {x = value;} } private float y; public float Y { get{return y;} - } + set {y = value;} + } private float r1; public float R1 { get{return r1;} - } + set {r1 = value;} + } private float r2; public float R2 { get{return r2;} - } + set {r2 = value;} + } private float angle; public float Angle { get{return angle;} - } + set {angle = value;} + } private bool largeArcFlag; public bool LargeArcFlag { get{return largeArcFlag;} - } + set {largeArcFlag = value;} + } private bool sweepFlag; public bool SweepFlag { get{return sweepFlag;} - } + set {sweepFlag = value;} + } #endregion Index: SvgPathSegLinetoVerticalRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoVerticalRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoVerticalRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoVerticalRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -15,7 +15,8 @@ public float Y { get{return y;} - } + set{y = value;} + } public override PointF AbsXY { Index: SvgPathSegMoveTo.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegMoveTo.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- SvgPathSegMoveTo.cs 6 Apr 2003 22:12:18 -0000 1.4 +++ SvgPathSegMoveTo.cs 19 Nov 2005 03:13:23 -0000 1.5 @@ -52,12 +52,14 @@ public float X { get{return x;} - } + set{x = value;} + } protected float y; public float Y { get{return y;} - } + set{y = value;} + } } } Index: SvgPathSegLinetoHorizontalAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegLinetoHorizontalAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegLinetoHorizontalAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegLinetoHorizontalAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -15,7 +15,8 @@ public float X { get{return x;} - } + set{x = value;} + } public override PointF AbsXY { Index: SvgPathSegCurvetoQuadraticSmoothAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoQuadraticSmoothAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoQuadraticSmoothAbs.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoQuadraticSmoothAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -29,7 +29,8 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; /// <summary> @@ -38,7 +39,8 @@ public float Y { get{return y;} - } + set{y = value;} + } #endregion #region public methods Index: SvgPathSegCurvetoQuadraticRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paths/SvgPathSegCurvetoQuadraticRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SvgPathSegCurvetoQuadraticRel.cs 6 Mar 2005 08:07:04 -0000 1.1 +++ SvgPathSegCurvetoQuadraticRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -29,25 +29,29 @@ public float X { get{return x;} - } + set{x = value;} + } private float y; public float Y { get{return y;} - } + set{y = value;} + } private float x1; public float X1 { get{return x1;} - } + set{x1 = value;} + } private float y1; public float Y1 { get{return y1;} - } + set{y1 = value;} + } #endregion #region pubic methods |