circumscribedCircle property
Get the circumscribed circle (circumcircle)
The circle passing through all three vertices.
Implementation
Circle get circumscribedCircle {
final cc = circumcenter;
final r = sqrt(pow(cc.x - a.x, 2) + pow(cc.y - a.y, 2));
return Circle(center: cc, radius: r);
}