Example #1
0
 /// <summary>
 ///  Sets the value of attribute orient to the given angle.
 /// </summary>
 /// <param name="angle"> The angle value to use for attribute orient.</param>
 public void SetOrientToAngle(ISvgAngle angle)
 {
     orientType = null;
     SetAttribute("orient", angle.ValueAsString);
     orientAngle = new SvgAnimatedAngle(angle);
 }
Example #2
0
 public SvgAnimatedAngle(ISvgAngle angle)
 {
     animVal = baseVal = angle;
 }
Example #3
0
 public SvgAnimatedAngle(string s, string defaultValue)
 {
     animVal = baseVal = new SvgAngle(s, defaultValue, false);
 }
Example #4
0
 /// <summary>
 ///  Sets the value of attribute orient to the given angle.
 /// </summary>
 /// <param name="angle"> The angle value to use for attribute orient.</param>
 public void SetOrientToAngle(ISvgAngle angle)
 {
     _orientType = null;
     SetAttribute("orient", angle.ValueAsString);
     _orientAngle = new SvgAnimatedAngle(angle);
 }
Example #5
0
 public SvgAnimatedAngle(ISvgAngle angle)
 {
     animVal = baseVal = angle;
 }
Example #6
0
 public SvgAnimatedAngle(string s, string defaultValue)
 {
     animVal = baseVal = new SvgAngle(s, defaultValue, false);
 }