Files
StructureHelper/StructureHelperCommon/Models/Shapes/Point2D.cs
2023-06-10 22:26:15 +05:00

18 lines
387 B
C#

namespace StructureHelperCommon.Models.Shapes
{
/// <inheritdoc />
public class Point2D : IPoint2D
{
/// <inheritdoc />
public double X { get; set; }
/// <inheritdoc />
public double Y { get; set; }
public object Clone()
{
var point = new Point2D() { X = X, Y = Y };
return point;
}
}
}