namespace Terminal.Gui; internal enum IntersectionType { /// There is no intersection None, /// A line passes directly over this point traveling along the horizontal axis PassOverHorizontal, /// A line passes directly over this point traveling along the vertical axis PassOverVertical, /// A line starts at this point and is traveling up StartUp, /// A line starts at this point and is traveling right StartRight, /// A line starts at this point and is traveling down StartDown, /// A line starts at this point and is traveling left StartLeft, /// A line exists at this point who has 0 length Dot }