using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX
{
/// <summary>
/// Represents a graph data point.
/// </summary>
public struct GraphPoint
{
/// <summary>
/// Gets or sets the x value.
/// </summary>
public double X { get; set; }
/// <summary>
/// Gets or sets the y value.
/// </summary>
public double Y { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="GraphPoint"/> struct.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
public GraphPoint(double x, double y)
{
X = x;
Y = y;
}
}
}
n>