Files
StructureHelper/StructureHelperCommon/Models/Functions/GraphPoint.cs
Иван Ивашкин bcea9639f6 Interpolation with test done
2024-10-31 17:35:31 +05:00

28 lines
600 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 bool Exclude { get; set; }
public double X { get; set; }
public double Y { get; set; }
public GraphPoint(double x, double y)
{
X = x;
Y = y;
Exclude = false;
}
public object Clone()
{
var clone = new GraphPoint(X,Y);
return clone;
}
}
}