{
const app = cm.app({
mode: "double",
renderer: await cm.terminal()
});
app
.data(cm.range(240, 0, Math.PI * 2))
.append(cm.group, {
x: app.prop("width") / 2,
y: app.prop("height") / 2
})
.append(cm.point, {
x: (t) => 10 * Math.cos(t) * Math.cos(t * 3),
y: (t) => 10 * Math.sin(t) * Math.cos(t * 3),
stroke: cm.cfb(cm.wch("🌟"))
});
return app.render().node();
}