Click or drag to resize

DrawingBaseIsLineIntersectsLine Method

Checks if two line intersects with each other

Namespace: ArthaChitra.Model.Chart
Assembly: ArthaChitra.Core (in ArthaChitra.Core.dll) Version: 2.0.8.0
Syntax
C#
protected bool IsLineIntersectsLine(
	Point line1Start,
	Point line1End,
	Point line2Start,
	Point line2End
)

Parameters

line1Start  Point
Start point of Line 1
line1End  Point
End point of line 1
line2Start  Point
Start point of line 2
line2End  Point
End point of line 2

Return Value

Boolean
True if the lines intersects, else false
See Also