From 619d1cf842731390b5e6bcddc5ff079cc87d353e Mon Sep 17 00:00:00 2001 From: tznind Date: Sun, 8 Jan 2023 10:56:43 +0000 Subject: [PATCH] xmldoc --- Terminal.Gui/Core/Graphs/LineCanvas.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/Core/Graphs/LineCanvas.cs b/Terminal.Gui/Core/Graphs/LineCanvas.cs index 07767564b..e0c31440c 100644 --- a/Terminal.Gui/Core/Graphs/LineCanvas.cs +++ b/Terminal.Gui/Core/Graphs/LineCanvas.cs @@ -7,7 +7,7 @@ namespace Terminal.Gui.Graphs { /// /// Facilitates box drawing and line intersection detection - /// and rendering. + /// and rendering. Does not support diagonal lines. /// public class LineCanvas { @@ -31,6 +31,7 @@ namespace Terminal.Gui.Graphs { /// Length of line. 0 for a dot. /// Positive for Down/Right. Negative for Up/Left. /// Direction of the line. + /// The style of line to use public void AddLine (Point from, int length, Orientation orientation, BorderStyle style) { lines.Add (new StraightLine (from, length, orientation, style));