{
let canvases = ["A", "B"].map((node, i) =>
curvesDigraphIFS.render_deterministic(node, {
pad: 0,
max_depth: iteration_depth,
image_width: width / 2,
initiators: [
[
[0, 0],
[1, 0]
],
[
[0, 0],
[1, 0]
]
],
colors: true,
extent:
i == 0
? [
[-0.1, 1.1],
[-0.1, 1.1]
]
: [
[-0.1, 1.1],
[-0.6, 0.5]
]
})
);
let w = width;
let h = canvases[0].height;
let div = d3
.create("div")
.style("width", `${width}px`)
.style("height", `${h}px`)
.style("position", "relative");
canvases.forEach((c) => div.append(() => c));
return div.node();
}