public GeometryHelper.LineIntersectionStates Intersects(LineSegment l2) { return(GeometryHelper.LinesIntersect(this, l2, true, true)); }
public LineSegment(LineSegment l) { StartPos = l.StartPos; EndPos = l.EndPos; }
public Vector2 GetIntersectionPoint(LineSegment l2) { return(GeometryHelper.GetIntersectionPoint(this, l2)); }