X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d-demos.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fexamples%2Flauncher%2FMenuPanel.java;h=1499174fad0478ddc41477efadc383f271aa525e;hp=9a5dc5854a6302b99e4e367feaea17afbf6ab42e;hb=708969a9a1413480d4679bec1642ef550fc6dc84;hpb=63b799f7add2ebb5cd30b50c2581bc246f6e7b82 diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java index 9a5dc58..1499174 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java @@ -1,10 +1,8 @@ /* - * Sixth 3D engine demos. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Sixth 3D engine demos. Author: Svjatoslav Agejenko. + * This project is released under Creative Commons Zero (CC0) license. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU Lesser General Public License - * or later as published by the Free Software Foundation. - */ +*/ package eu.svjatoslav.sixth.e3d.examples.launcher; @@ -25,7 +23,6 @@ class MenuPanel extends JPanel { sequentialGroup.addComponent(new JButton(new ShowMathGraphs())); sequentialGroup.addComponent(new JButton(new ShowPointCloud())); sequentialGroup.addComponent(new JButton(new ShowRain())); - sequentialGroup.addComponent(new JButton(new ShowSinusMap())); sequentialGroup.addComponent(new JButton(new ShowTextEditors())); sequentialGroup.addComponent(new JButton(new ShowGameOfLife())); sequentialGroup.addComponent(new JButton(new ShowRandomPolygons())); @@ -42,16 +39,6 @@ class MenuPanel extends JPanel { } } - private class ShowSinusMap extends AbstractAction { - ShowSinusMap() { - putValue(NAME, "Wireframe sphere and ploygon landscape"); - } - - @Override - public void actionPerformed(final ActionEvent e) { - SphereDemo.main(null); - } - } private class ShowRain extends AbstractAction { ShowRain() {