We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee805a4 commit 068fb64Copy full SHA for 068fb64
1 file changed
src/Magick.NET.Core/Types/PointD.cs
@@ -45,14 +45,14 @@ public PointD(string value)
45
}
46
47
/// <summary>
48
- /// Gets the x-coordinate of this <see cref="PointD"/>.
+ /// Gets or sets the x-coordinate of this <see cref="PointD"/>.
49
/// </summary>
50
- public double X { get; private set; }
+ public double X { get; set; }
51
52
53
- /// Gets the y-coordinate of this <see cref="PointD"/>.
+ /// Gets or sets the y-coordinate of this <see cref="PointD"/>.
54
55
- public double Y { get; private set; }
+ public double Y { get; set; }
56
57
58
/// Determines whether the specified <see cref="PointD"/> instances are considered equal.
0 commit comments