Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Coordinate Systems Transformations and Units
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorBindings/SharpVectors/Dom/Svg/Coordinate Systems Transformations and Units
Modified Files:
ISvgMatrix.cs ISvgPreserveAspectRatio.cs
Log Message:
Library wide changes for scripting support and automated re-rendering
Index: ISvgMatrix.cs
===================================================================
RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Coordinate Systems Transformations and Units/ISvgMatrix.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ISvgMatrix.cs 9 Aug 2003 23:24:57 -0000 1.1
+++ ISvgMatrix.cs 19 Nov 2005 03:13:22 -0000 1.2
@@ -8,12 +8,12 @@
/// <completed>100</completed>
public interface ISvgMatrix
{
- float A { get; }
- float B { get; }
- float C { get; }
- float D { get; }
- float E { get; }
- float F { get; }
+ float A { get;set; }
+ float B { get;set; }
+ float C { get;set; }
+ float D { get;set; }
+ float E { get;set; }
+ float F { get;set; }
ISvgMatrix Multiply(ISvgMatrix secondMatrix);
ISvgMatrix Inverse();
Index: ISvgPreserveAspectRatio.cs
===================================================================
RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Coordinate Systems Transformations and Units/ISvgPreserveAspectRatio.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ISvgPreserveAspectRatio.cs 9 Aug 2003 23:24:57 -0000 1.1
+++ ISvgPreserveAspectRatio.cs 19 Nov 2005 03:13:22 -0000 1.2
@@ -10,11 +10,11 @@
/// <summary>
/// The type of the alignment value as specified by one of the constants specified above.
/// </summary>
- SvgPreserveAspectRatioType Align{get;}
+ SvgPreserveAspectRatioType Align{get;set;}
/// <summary>
/// The type of the meet-or-slice value as specified by one of the constants specified above.
/// </summary>
- SvgMeetOrSlice MeetOrSlice{get;}
+ SvgMeetOrSlice MeetOrSlice{get;set;}
}
}
\ No newline at end of file
|