Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcRel"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates to use.</param>
 public PathArcRel(IEnumerable <PathArc> coordinates)
 {
     _coordinates = new PathArcCoordinates(coordinates);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcRel"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates to use.</param>
 public PathArcRel(params PathArc[] coordinates)
 {
     _coordinates = new PathArcCoordinates(coordinates);
 }
Example #3
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);
 }
Example #4
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);
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcAbs"/> class.
 /// </summary>
 /// <param name="pathArcs">The coordinates to use.</param>
 public PathArcAbs(IEnumerable <PathArc> pathArcs)
 {
     _coordinates = new PathArcCoordinates(pathArcs);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathArcAbs"/> class.
 /// </summary>
 /// <param name="pathArcs">The coordinates to use.</param>
 public PathArcAbs(params PathArc[] pathArcs)
 {
     _coordinates = new PathArcCoordinates(pathArcs);
 }