intersection_two_circles: Auxiliary functions for computing circle intersection areas

View source: R/intersections_two_three_circles.R

intersection_two_circlesR Documentation

Auxiliary functions for computing circle intersection areas

Description

'intersection_two_circles()' Function for the the area of intersection of two circles.

'intersection_three_circles()' Function for the area of intersection of three circles.

Usage

intersection_two_circles(centers_x, centers_y, radii)

intersection_three_circles(centers_x, centers_y, radii)

Arguments

centers_x, centers_y, radii

Numeric vectors of length N with the x, y coordinates of the center, and the radius of the circles.

Value

The area of intersection of the circles is computed.


CirclesIntersections documentation built on March 7, 2023, 7:30 p.m.