We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5917abf commit a836988Copy full SHA for a836988
src/lines.jl
@@ -1,9 +1,9 @@
1
2
"""
3
- intersect(a::Line, b::Line) -> Point
+ intersects(a::Line, b::Line) -> Bool, Point
4
5
Intersection of 2 line segmens `a` and `b`.
6
-Returns intersection_found::Bool, intersection_point
+Returns intersection_found::Bool, intersection_point::Point
7
8
function intersects(a::Line{2,T1}, b::Line{2,T2}) where {T1,T2}
9
T = promote_type(T1, T2)
0 commit comments