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