Package com.sun.j3d.utils.applet

Examples of com.sun.j3d.utils.applet.MainFrame


  public static void main(String argv[])
  {
   
    BranchGroup group;
   
    new MainFrame(new Java3DTest(), 500, 500);
  }
View Full Code Here


    c.print(false);
  }
 
  public static void main(String argv[])
  {
    new MainFrame(new PrintFromButton(), 500, 500);
  }
View Full Code Here

    }
 
 
  public static void main(String argv[])
  {
    new MainFrame(new OffScreenTest(), 500, 500);
  }
View Full Code Here

    //
    // The following allows HelloUniverse to be run as an application
    // as well as an applet
    //
    public static void main(String[] args) {
  new MainFrame(new Text2DTest(), 256, 256);
    }
View Full Code Here

  u.cleanup();
    }


    public static void main(String[] args) {
  new MainFrame(new VirtualInputDeviceTest(), 350, 350);
    }
View Full Code Here

    //  The following allows this to be run as an application
    //  as well as an applet

    public static void main(String[] args) {
        Frame frame = new MainFrame(new HelloJava3Dd(), 256, 256);
    } // end of main (method of HelloJava3D)
View Full Code Here

    //  as well as an applet

    public static void main(String[] args) {
        System.out.println("BlueLitTwistApp - Java 3D");
        System.out.println("A demonstration of lights.");
        Frame frame = new MainFrame(new BlueLitTwistApp(), 256, 256);
    } // end of main method of TwistApp
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.applet.MainFrame

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.