Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/circleintersection.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export function containedInCircles(point, circles) {
}

/** Gets all intersection points between a bunch of circles */
function getIntersectionPoints(circles) {
export function getIntersectionPoints(circles) {
var ret = [];
for (var i = 0; i < circles.length; ++i) {
for (var j = i + 1; j < circles.length; ++j) {
Expand Down Expand Up @@ -214,4 +214,4 @@ export function getCenter(points) {
center.x /= points.length;
center.y /= points.length;
return center;
}
}
Loading