Merged sphere demo and graph demo. Set default FPS to 60.
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / launcher / MenuPanel.java
index 9a5dc58..1499174 100644 (file)
@@ -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() {