Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths Modified Files: ISvgPathSegArcAbs.cs ISvgPathSegArcRel.cs ISvgPathSegCurvetoCubicAbs.cs ISvgPathSegCurvetoCubicRel.cs ISvgPathSegCurvetoCubicSmoothAbs.cs ISvgPathSegCurvetoCubicSmoothRel.cs ISvgPathSegCurvetoQuadraticAbs.cs ISvgPathSegCurvetoQuadraticRel.cs ISvgPathSegCurvetoQuadraticSmoothAbs.cs ISvgPathSegCurvetoQuadraticSmoothRel.cs ISvgPathSegLinetoAbs.cs ISvgPathSegLinetoHorizontalAbs.cs ISvgPathSegLinetoHorizontalRel.cs ISvgPathSegLinetoRel.cs ISvgPathSegLinetoVerticalAbs.cs ISvgPathSegLinetoVerticalRel.cs ISvgPathSegMovetoAbs.cs ISvgPathSegMovetoRel.cs Log Message: Library wide changes for scripting support and automated re-rendering Index: ISvgPathSegLinetoHorizontalAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoHorizontalAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoHorizontalAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoHorizontalAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,6 +9,6 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoHorizontalAbs : ISvgPathSeg { - float X{get;} + float X{get;set;} } } \ No newline at end of file Index: ISvgPathSegArcAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegArcAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegArcAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegArcAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,12 +9,12 @@ /// <completed>100</completed> public interface ISvgPathSegArcAbs : ISvgPathSeg { - float X{get;} - float Y{get;} - float R1{get;} - float R2{get;} - float Angle{get;} - bool LargeArcFlag{get;} - bool SweepFlag{get;} + float X{get;set;} + float Y{get;set;} + float R1{get;set;} + float R2{get;set;} + float Angle{get;set;} + bool LargeArcFlag{get;set;} + bool SweepFlag{get;set;} } } Index: ISvgPathSegCurvetoQuadraticSmoothRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoQuadraticSmoothRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoQuadraticSmoothRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoQuadraticSmoothRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoQuadraticSmoothRel : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoCubicSmoothAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoCubicSmoothAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoCubicSmoothAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoCubicSmoothAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,9 +9,9 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoCubicSmoothAbs : ISvgPathSeg { - float X{get;} - float Y{get;} - float X2{get;} - float Y2{get;} + float X{get;set;} + float Y{get;set;} + float X2{get;set;} + float Y2{get;set;} } } \ No newline at end of file Index: ISvgPathSegLinetoVerticalRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoVerticalRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoVerticalRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoVerticalRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -8,6 +8,6 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoVerticalRel : ISvgPathSeg { - float Y{get;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegLinetoAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoAbs : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoCubicAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoCubicAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoCubicAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoCubicAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,11 +9,11 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoCubicAbs : ISvgPathSeg { - float X{get;} - float Y{get;} - float X1{get;} - float Y1{get;} - float X2{get;} - float Y2{get;} + float X{get;set;} + float Y{get;set;} + float X1{get;set;} + float Y1{get;set;} + float X2{get;set;} + float Y2{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoQuadraticRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoQuadraticRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoQuadraticRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoQuadraticRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,9 +9,9 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoQuadraticRel : ISvgPathSeg { - float X{get;} - float Y{get;} - float X1{get;} - float Y1{get;} + float X{get;set;} + float Y{get;set;} + float X1{get;set;} + float Y1{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoQuadraticAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoQuadraticAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoQuadraticAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoQuadraticAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,9 +9,9 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoQuadraticAbs : ISvgPathSeg { - float X{get;} - float Y{get;} - float X1{get;} - float Y1{get;} + float X{get;set;} + float Y{get;set;} + float X1{get;set;} + float Y1{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoCubicRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoCubicRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoCubicRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoCubicRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,11 +9,11 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoCubicRel : ISvgPathSeg { - float X{get;} - float Y{get;} - float X1{get;} - float Y1{get;} - float X2{get;} - float Y2{get;} + float X{get;set;} + float Y{get;set;} + float X1{get;set;} + float Y1{get;set;} + float X2{get;set;} + float Y2{get;set;} } } \ No newline at end of file Index: ISvgPathSegLinetoHorizontalRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoHorizontalRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoHorizontalRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoHorizontalRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,6 +9,6 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoHorizontalRel : ISvgPathSeg { - float X{get;} + float X{get;set;} } } \ No newline at end of file Index: ISvgPathSegLinetoVerticalAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoVerticalAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoVerticalAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoVerticalAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,6 +9,6 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoVerticalAbs : ISvgPathSeg { - float Y{get;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegMovetoAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegMovetoAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegMovetoAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegMovetoAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegMovetoAbs : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } Index: ISvgPathSegCurvetoCubicSmoothRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoCubicSmoothRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoCubicSmoothRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoCubicSmoothRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,9 +9,9 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoCubicSmoothRel : ISvgPathSeg { - float X{get;} - float Y{get;} - float X2{get;} - float Y2{get;} + float X{get;set;} + float Y{get;set;} + float X2{get;set;} + float Y2{get;set;} } } \ No newline at end of file Index: ISvgPathSegCurvetoQuadraticSmoothAbs.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegCurvetoQuadraticSmoothAbs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegCurvetoQuadraticSmoothAbs.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegCurvetoQuadraticSmoothAbs.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegCurvetoQuadraticSmoothAbs : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegMovetoRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegMovetoRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegMovetoRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegMovetoRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegMovetoRel : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegLinetoRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegLinetoRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegLinetoRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegLinetoRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,7 +9,7 @@ /// <completed>100</completed> public interface ISvgPathSegLinetoRel : ISvgPathSeg { - float X{get;} - float Y{get;} + float X{get;set;} + float Y{get;set;} } } \ No newline at end of file Index: ISvgPathSegArcRel.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Paths/ISvgPathSegArcRel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgPathSegArcRel.cs 9 Aug 2003 23:24:57 -0000 1.1 +++ ISvgPathSegArcRel.cs 19 Nov 2005 03:13:23 -0000 1.2 @@ -9,12 +9,12 @@ /// <completed>100</completed> public interface ISvgPathSegArcRel : ISvgPathSeg { - float X{get;} - float Y{get;} - float R1{get;} - float R2{get;} - float Angle{get;} - bool LargeArcFlag{get;} - bool SweepFlag{get;} + float X{get;set;} + float Y{get;set;} + float R1{get;set;} + float R2{get;set;} + float Angle{get;set;} + bool LargeArcFlag{get;set;} + bool SweepFlag{get;set;} } } \ No newline at end of file |