use of org.twak.tweed.CompareGens in project chordatlas by twak.
the class SkelGen method getUI.
@Override
public JComponent getUI() {
JPanel ui = new JPanel(new ListDownLayout());
ui.add(new JLabel("To edit: use select tool, right click on buildings"));
JButton compare = new JButton("compare to mesh");
compare.addActionListener(l -> new CompareGens(this, blockGen));
ui.add(compare);
JButton pf = new JButton("all procedural facades");
pf.addActionListener(l -> cgaAll());
ui.add(pf);
JButton proc = new JButton("CGA facades");
return ui;
}
Aggregations