Search in sources :

Example 1 with LoopPanel

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();
    });
}
Also used : Gridding(spacegraph.space2d.container.Gridding) Label(spacegraph.space2d.widget.text.Label) LoopPanel(spacegraph.space2d.widget.meta.LoopPanel) Surface(spacegraph.space2d.Surface) AutoSurface(spacegraph.space2d.widget.meta.AutoSurface)

Aggregations

Surface (spacegraph.space2d.Surface)1 Gridding (spacegraph.space2d.container.Gridding)1 AutoSurface (spacegraph.space2d.widget.meta.AutoSurface)1 LoopPanel (spacegraph.space2d.widget.meta.LoopPanel)1 Label (spacegraph.space2d.widget.text.Label)1