Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DrawablePolyline"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates.</param>
 public DrawablePolyline(IEnumerable<PointD> coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates, 3);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DrawablePolyline"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates.</param>
 public DrawablePolyline(params PointD[] coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates, 3);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathLineToAbs"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates to use.</param>
 public PathLineToAbs(IEnumerable<PointD> coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates);
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PathLineToAbs"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates to use.</param>
 public PathLineToAbs(params PointD[] coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates);
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DrawableBezier"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates.</param>
 public DrawableBezier(IEnumerable<PointD> coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates, 3);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DrawableBezier"/> class.
 /// </summary>
 /// <param name="coordinates">The coordinates.</param>
 public DrawableBezier(params PointD[] coordinates)
 {
   _Coordinates = new PointDCoordinates(coordinates, 3);
 }