* Builds a NeoGraphics User Interface
*/
private UINetwork buildUI() {
NengoGraphics nengoGraphics = new NengoGraphics();
TrackedStatusMsg task;
task = new TrackedStatusMsg("Creating Model UI");
if (networkUI == null) {
networkUI = new UINetwork(network);
nengoGraphics.getWorld().getGround().addChild(networkUI);
networkUI.openViewer();
}
processNetwork(networkUI);
task.finished();
return networkUI;
}