namespace Terminal.Gui;
///
/// Describes two points in graph space and a line between them
///
public class LineF {
///
/// The start of the line
///
public PointF Start { get; }
///
/// The end point of the line
///
public PointF End { get; }
///
/// Creates a new line between the points
///
public LineF (PointF start, PointF end)
{
this.Start = start;
this.End = end;
}
}