use of spacegraph.space2d.widget.meta.LoopPanel in project narchy by automenta.
the class ExeCharts method runPanel.
public static Surface runPanel(NAR n) {
Label nameLabel;
LoopPanel control = new LoopPanel(n.loop);
Surface p = new Gridding(nameLabel = new Label(n.self().toString()), control);
return DurSurface.get(p, n, () -> {
control.update();
});
}
Aggregations