import java.applet.*; import java.awt.*; import java.awt.event.*; import java.lang.*; import java.util.*; import java.io.*; import java.util.*; import gl4java.GLContext; import gl4java.awt.GLCanvas; import gl4java.utils.glut.*; /** * Example Joogl Program #1 * * Draws a single sphere in the middle of the screen. */ public class ex1 extends Applet { /** * The class variable that holds the canvas, so we can access it * from inner classes. */ exampleCanvas canvas = null; /** * void init() * * Initialise the applet. */ public void init() { Dimension d = getSize(); //We will use BorderLayout to layout the applet components setLayout(new BorderLayout()); //Create our canvas and add it to the center of the applet canvas = new exampleCanvas(d.width, d.height); add("Center", canvas); /* retrieve the root object */ jooglRoot root = new jooglRoot(); canvas.addRoot(root); /* create a camera */ jooglCamera camera = new jooglPerspectiveCamera(0.0, 0.0, 15.0, /* eye is at (0,0,30) */ 0.0, 0.0, 0.0, /* center is at (0,0,0) */ 0.0, 1.0, 0.0, /* up is in positive Y direction */ 40.0, /* field of view in degree */ 1.0, /* Z near */ 100.0);/* Z far */ root.setCamera(camera); /* create an ambient light and add it to the scene graph. */ jooglAmbientLight lightAmb = new jooglAmbientLight(0.2, 0.2, 0.2); root.add(lightAmb); /* create a group and add it to the root. */ jooglGroup group = new jooglGroup(); root.add(group); /* create a simple sphere with some properties, and put it in the group. */ jooglSphere sphere = new jooglSphere(4.0, 30); sphere.setMaterial(new jooglMaterial(1.0, 0.5, 0.5)); group.add(sphere); } /** main, for when it is run from the command line. * * Set up a window for the "applet" to run in. */ public static void main( String args[] ) { ex1 applet = new ex1(); Frame f = new Frame("CS4451A Joogl Example 1"); f.addWindowListener( new WindowAdapter() { public void windowClosed(WindowEvent e) { System.exit(0); } public void windowClosing(WindowEvent e) { windowClosed(e); } }); f.setLayout(new BorderLayout()); f.add("Center", applet); applet.setSize(500,300); applet.init(); applet.start(); Dimension ps = applet.getPreferredSize(); f.setBounds(-100,-100,99,99); f.setVisible(true); f.setVisible(false); f.setVisible(true); Insets i = f.getInsets(); f.setBounds(0,0, ps.width+i.left+i.right, ps.height+i.top+i.bottom); f.setVisible(true); } /** jooglCanvas class for this application. */ private class exampleCanvas extends jooglCanvas { public exampleCanvas(int w, int h) { super(w, h); } } }