Skip to content

Commit 068fb64

Browse files
committed
Allow modification of X and Y in the PointD struct (#1856).
1 parent ee805a4 commit 068fb64

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Magick.NET.Core/Types/PointD.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ public PointD(string value)
4545
}
4646

4747
/// <summary>
48-
/// Gets the x-coordinate of this <see cref="PointD"/>.
48+
/// Gets or sets the x-coordinate of this <see cref="PointD"/>.
4949
/// </summary>
50-
public double X { get; private set; }
50+
public double X { get; set; }
5151

5252
/// <summary>
53-
/// Gets the y-coordinate of this <see cref="PointD"/>.
53+
/// Gets or sets the y-coordinate of this <see cref="PointD"/>.
5454
/// </summary>
55-
public double Y { get; private set; }
55+
public double Y { get; set; }
5656

5757
/// <summary>
5858
/// Determines whether the specified <see cref="PointD"/> instances are considered equal.

0 commit comments

Comments
 (0)