This program is written mostly in the "sigilless" style for several reasons. First, sigils tend to imply variables, and these sigilless symbols are not variables, but readonly bindings to values that are calculated only once, so leaving off the sigil emphasizes the fact that they are not variables, but merely named intermediate results.
Second, it looks more like the original mathematical formulas to do it this way.
Third, together with the use of Unicode, we are emphasizing the social contract between the writer and the reader, which has a clause in it that indicates code is read much more often than it is written, therefore the writer is obligated to undergo vicarious suffering on behalf of the reader to make things clear. If the reader doesn't understand, it's the writer's fault, in other words. Or in other other words, figure out how to type those Unicode characters, even if it's hard. And you should type them whenever it makes things clearer to the reader.
Finally, writing in an SSA style tends to help the optimizer.
class Circle {
has $.x;
has $.y;
has $.r;
method gist { sprintf "%s =%7.3f " xx 3, (:$!x,:$!y,:$!r)ยป.kv }
}
sub circle($x,$y,$r) { Circle.new:ย :$x,ย :$y,ย :$r }
sub solve-Apollonius([\c1, \c2, \c3], [\s1, \s2, \s3]) {
my \๐ฃ11 = 2 * c2.x - 2 * c1.x;
my \๐ฃ12 = 2 * c2.y - 2 * c1.y;
my \๐ฃ13 = c1.xยฒ - c2.xยฒ + c1.yยฒ - c2.yยฒ - c1.rยฒ + c2.rยฒ;
my \๐ฃ14 = 2 * s2 * c2.r - 2 * s1 * c1.r;
my \๐ฃ21 = 2 * c3.x - 2 * c2.x;
my \๐ฃ22 = 2 * c3.y - 2 * c2.y;
my \๐ฃ23 = c2.xยฒ - c3.xยฒ + c2.yยฒ - c3.yยฒ - c2.rยฒ + c3.rยฒ;
my \๐ฃ24 = 2 * s3 * c3.r - 2 * s2 * c2.r;
my \๐ค12 = ๐ฃ12 / ๐ฃ11;
my \๐ค13 = ๐ฃ13 / ๐ฃ11;
my \๐ค14 = ๐ฃ14 / ๐ฃ11;
my \๐ค22 = ๐ฃ22 / ๐ฃ21 - ๐ค12;
my \๐ค23 = ๐ฃ23 / ๐ฃ21 - ๐ค13;
my \๐ค24 = ๐ฃ24 / ๐ฃ21 - ๐ค14;
my \๐ = -๐ค23 / ๐ค22;
my \๐ = ๐ค24 / ๐ค22;
my \๐ = -๐ค12 * ๐ - ๐ค13;
my \๐ = ๐ค14 - ๐ค12 * ๐;
my \๐ = ๐ยฒ + ๐ยฒ - 1;
my \๐ = 2 * ๐ * ๐ - 2 * ๐ * c1.x + 2 * ๐ * ๐ - 2 * ๐ * c1.y + 2 * s1 * c1.r;
my \๐ = c1.xยฒ + ๐ยฒ - 2 * ๐ * c1.x + ๐ยฒ + c1.yยฒ - 2 * ๐ * c1.y - c1.rยฒ;
my \๐ท = ๐ยฒ - 4 * ๐ * ๐;
my \rs = (-๐ - sqrt ๐ท) / (2 * ๐);
my \xs = ๐ + ๐ * rs;
my \ys = ๐ + ๐ * rs;
circle(xs, ys, rs);
}
my @c = circle(0, 0, 1), circle(4, 0, 1), circle(2, 4, 2);
for ([X] [-1,1] xx 3) -> @i {
say (solve-Apollonius @c, @i).gist;
}
Output:
x = 2.000 y = 0.833 r = 1.167
x = 2.000 y = 3.214 r = 2.786
x = 3.002 y = 0.123 r = 2.005
x = 4.127 y = 3.252 r = 4.255
x = 0.998 y = 0.123 r = 2.005
x = -0.127 y = 3.252 r = 4.255
x = 2.000 y = -1.500 r = 3.500
x = 2.000 y = 2.100 r = 3.900