Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcRel"/> class.
 /// </summary>
 /// <param name="pathArcs">The coordinates to use.</param>
 public PathArcRel(IEnumerable<PathArc> pathArcs)
 {
   _Coordinates = new PathArcCoordinates(pathArcs);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcRel"/> class.
 /// </summary>
 /// <param name="pathArcs">The coordinates to use.</param>
 public PathArcRel(params PathArc[] pathArcs)
 {
   _Coordinates = new PathArcCoordinates(pathArcs);
 }