コード例 #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);
 }
コード例 #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);
 }
コード例 #3
0
ファイル: PathLineToAbs.cs プロジェクト: dlemstra/Magick.NET
 /// <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);
 }
コード例 #4
0
ファイル: PathLineToAbs.cs プロジェクト: dlemstra/Magick.NET
 /// <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);
 }
コード例 #5
0
ファイル: DrawableBezier.cs プロジェクト: dlemstra/Magick.NET
 /// <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);
 }
コード例 #6
0
ファイル: DrawableBezier.cs プロジェクト: dlemstra/Magick.NET
 /// <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);
 }