function soddyCircles([A, a], [B, b], [C, c]) {
const innerPoints = [],
outerPoints = [];
for (let i = 0; i < 3; i++) {
const auxpoints = auxPoints(A, B, C, c);
const tanPoint = vec2.lerp([], A, B, a / (a + b));
outerPoints.push(circleLineIntersection(tanPoint, auxpoints[0], C, c)[1]);
innerPoints.push(circleLineIntersection(tanPoint, auxpoints[1], C, c)[0]);
[[A, a], [B, b], [C, c]] = [
[C, c],
[A, a],
[B, b]
];
}
const innerCenter = circumCenter(...innerPoints);
const innerRadius = vec2.dist(innerCenter, innerPoints[0]);
const outerCenter = circumCenter(...outerPoints);
const outerRadius = vec2.dist(outerCenter, outerPoints[0]);
return [
[innerCenter, innerRadius],
[outerCenter, outerRadius],
innerPoints,
outerPoints
];
}