Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="startPoint"></param>
 /// <param name="isFilled"></param>
 /// <param name="isClosed"></param>
 public void BeginFigure(
     XPoint startPoint,
     bool isFilled = true,
     bool isClosed = true)
 {
     _figure = XPathFigure.Create(
         startPoint,
         new List <XPathSegment>(),
         isFilled,
         isClosed);
     Figures.Add(_figure);
 }
Esempio n. 2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="startPoint"></param>
 /// <param name="isFilled"></param>
 /// <param name="isClosed"></param>
 public void BeginFigure(
     XPoint startPoint,
     bool isFilled = true,
     bool isClosed = true)
 {
     _figure = XPathFigure.Create(
         startPoint,
         new List<XPathSegment>(),
         isFilled,
         isClosed);
     Figures.Add(_figure);
 }