Package com.heatonresearch.aifh.examples.util

Examples of com.heatonresearch.aifh.examples.util.WorldPanel


        buttonPanel.add(new Label("Rule (0-255):"));
        buttonPanel.add(this.ruleInput = new TextField(5));
        this.ruleInput.setText("30");
        buttonPanel.add(generateButton = new JButton("Generate"));

        this.worldArea = new WorldPanel(ROWS, COLS, false);
        /*
      Allow scrolling.
     */
        final JScrollPane scroll = new JScrollPane(this.worldArea);
        c.add(scroll, BorderLayout.CENTER);
View Full Code Here


        buttonPanel.add(iterationButton = new JButton("Iteration"));
        buttonPanel.add(startButton = new JButton("Start"));
        buttonPanel.add(stopButton = new JButton("Stop"));
        buttonPanel.add(resetButton = new JButton("Reset"));

        this.worldArea = new WorldPanel(ROWS, COLS, true);
        /*
      Scroll bar.
     */
        final JScrollPane scroll = new JScrollPane(this.worldArea);
        c.add(scroll, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of com.heatonresearch.aifh.examples.util.WorldPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.