Files
StructureHelper/StructureHelperCommon/Models/Functions/GraphPoint.cs
Иван Ивашкин 11ac7c7c48 Add tree graph commands
2024-10-19 21:08:13 +05:00

26 lines
528 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Functions
{
public class GraphPoint : ICloneable
{
public double X { get; set; }
public double Y { get; set; }
public GraphPoint(double x, double y)
{
X = x;
Y = y;
}
public object Clone()
{
var clone = new GraphPoint(X,Y);
return clone;
}
}
}