julia_morph = {
let t1, t2, inv1, inv2;
if (t < 1 / 2) {
t1 = 2 * t;
t2 = 0;
inv1 = (z) => math.pow(z.sub(math.multiply(t1, c)), math.divide(2 - t2, 2));
inv2 = (z) =>
math.pow(z.sub(math.multiply(t1, c)), math.divide(2 - t2, 2)).mul(-1);
} else {
t1 = 1;
t2 = 2 * t - 1;
inv1 = (z) => math.pow(z.sub(math.multiply(t1, c)), math.divide(2 - t2, 2));
inv2 = (z) =>
math.pow(z.sub(math.multiply(t1, c)), math.divide(2 - t2, 2)).mul(-1);
}
return Plot.plot({
marks: [
Plot.dot(JPoints, { x: "re", y: "im", r: 1, fill: "lightgray" }),
Plot.dot(JPoints.map(inv1), { x: "re", y: "im", r: 1, fill: "blue" }),
Plot.axisX({ y: 0 }),
Plot.axisY({ x: 0, ticks: 5 }),
Plot.ruleX([0]),
Plot.ruleY([0]),
t == 1
? Plot.dot(JPoints.map(inv2), { x: "re", y: "im", r: 1, fill: "red" })
: null,
t == 1
? Plot.text(
[
{ text: "+", color: "blue", x: 1.4, y: 1.3 },
{ text: "-", color: "red", x: -1.4, y: 1.3 }
],
{
text: "text",
fill: "color",
x: "x",
y: "y",
fontSize: 30
}
)
: null
],
x: { domain: [-2, 2], label: "re" },
y: { domain: [-1.6, 1.6], label: "im" },
width: 0.5 * width,
height: (0.5 * width) / 1.25
});
}