intersectionCircleLine {PlaneGeometry} | R Documentation |
Intersection of a circle and a line
Description
Return the intersection of a circle and a line.
Usage
intersectionCircleLine(circ, line, strict = FALSE)
Arguments
circ |
a |
line |
a |
strict |
logical, whether to take into account |
Value
NULL
if there is no intersection;
a point if the infinite line is tangent to the circle, or NULL
if strict=TRUE
and the point is not on the line (segment or half-line);
a list of two points if the circle and the infinite line meet at
two points, when strict=FALSE
; if strict=TRUE
and the line is
a segment or a half-line, this can return NULL
or a single point.
Examples
circ <- Circle$new(c(1,1), 2)
line <- Line$new(c(2,-2), c(1,2), FALSE, FALSE)
intersectionCircleLine(circ, line)
intersectionCircleLine(circ, line, strict = TRUE)
[Package PlaneGeometry version 1.6.0 Index]