JAL-2847 needed methods made public
[jalview.git] / forester / java / src / org / forester / development / Hello3d.java
1 // http://www.java3d.org/tutorial.html
2 // http://download.java.net/media/java3d/builds/release/1.5.1/README-download.html
3 //
4 // /usr/lib/jvm/java-6-sun-1.6.0.24/jre
5 // lib/ext/vecmath.jar
6 // lib/ext/j3dcore.jar
7 // lib/ext/j3dutils.jar
8 //
9
10 package org.forester.development;
11
12 // import com.sun.j3d.utils.universe.SimpleUniverse;
13 // import com.sun.j3d.utils.geometry.ColorCube;
14 // import com.sun.j3d.utils.geometry.Cylinder;
15 // import javax.media.j3d.BranchGroup;
16 public class Hello3d {
17
18     public Hello3d() {
19         //        SimpleUniverse universe = new SimpleUniverse();
20         //        BranchGroup group = new BranchGroup();
21         //        //ColorCube cc0 = new ColorCube( 0.1);
22         //       // Appearance a = new Appearance();
23         //        group.addChild( new Cylinder( 0,1));
24         //        group.addChild( new ColorCube( 0.3 ) );
25         //        universe.getViewingPlatform().setNominalViewingTransform();
26         //        universe.addBranchGraph( group );
27     }
28
29     public static void main( final String[] args ) {
30         new Hello3d();
31     }
32 } // end of class Hello3d