function create(chart, data) {
var scene = d3.select(chart).select("a-scene");
scene.selectAll(".dot").remove();
const r = 0.05;
scene
.selectAll(".dot")
.data(data)
.join("a-sphere")
.classed("dot", true)
.attr("color", d => d.color)
.attr("radius", r)
.attr("width", 2 * r)
.attr("height", 2 * r)
.attr("depth", 2 * r)
.attr("position", (_, i) =>
[3 * Math.random(), 3 * Math.random(), 3 * Math.random()].join(" ")
);
}