Picking utilities on various GeometryArray subclasses and Morph object : Mouse Keyboard Action « 3D « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » 3D » Mouse Keyboard ActionScreenshots 
Picking utilities on various GeometryArray subclasses and Morph object
Picking utilities on various GeometryArray subclasses and Morph object

/*
 *  @(#)PickTest.java 1.9 02/10/21 13:48:53
 *
 * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 *
 * - Redistribution in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in
 *   the documentation and/or other materials provided with the
 *   distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of
 * contributors may be used to endorse or promote products derived
 * from this software without specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any
 * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
 * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
 * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
 * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
 * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
 * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
 * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that Software is not designed,licensed or intended
 * for use in the design, construction, operation or maintenance of
 * any nuclear facility.
 */

import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Enumeration;

import javax.media.j3d.Alpha;
import javax.media.j3d.Appearance;
import javax.media.j3d.Behavior;
import javax.media.j3d.BoundingSphere;
import javax.media.j3d.BranchGroup;
import javax.media.j3d.Canvas3D;
import javax.media.j3d.CompressedGeometry;
import javax.media.j3d.CompressedGeometryHeader;
import javax.media.j3d.DirectionalLight;
import javax.media.j3d.Geometry;
import javax.media.j3d.GeometryArray;
import javax.media.j3d.Group;
import javax.media.j3d.IndexedLineArray;
import javax.media.j3d.IndexedLineStripArray;
import javax.media.j3d.IndexedPointArray;
import javax.media.j3d.IndexedQuadArray;
import javax.media.j3d.IndexedTriangleArray;
import javax.media.j3d.IndexedTriangleFanArray;
import javax.media.j3d.IndexedTriangleStripArray;
import javax.media.j3d.LineArray;
import javax.media.j3d.LineStripArray;
import javax.media.j3d.Material;
import javax.media.j3d.Morph;
import javax.media.j3d.PointArray;
import javax.media.j3d.PointAttributes;
import javax.media.j3d.QuadArray;
import javax.media.j3d.Shape3D;
import javax.media.j3d.Transform3D;
import javax.media.j3d.TransformGroup;
import javax.media.j3d.TriangleArray;
import javax.media.j3d.TriangleFanArray;
import javax.media.j3d.TriangleStripArray;
import javax.media.j3d.View;
import javax.media.j3d.WakeupOnElapsedFrames;
import javax.swing.BoxLayout;
import javax.swing.ButtonGroup;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.border.BevelBorder;
import javax.vecmath.Color3f;
import javax.vecmath.Point3d;
import javax.vecmath.Point3f;
import javax.vecmath.Vector3d;
import javax.vecmath.Vector3f;

import com.sun.j3d.utils.applet.MainFrame;
import com.sun.j3d.utils.picking.PickCanvas;
import com.sun.j3d.utils.picking.PickTool;
import com.sun.j3d.utils.picking.behaviors.PickRotateBehavior;
import com.sun.j3d.utils.picking.behaviors.PickTranslateBehavior;
import com.sun.j3d.utils.picking.behaviors.PickZoomBehavior;
import com.sun.j3d.utils.universe.SimpleUniverse;

/**
 * PickTest shows how to use the Picking utilities on various GeometryArray
 * subclasses and Morph object. Type of Geometry : CompressedGeometry (
 * GullCG.java ) IndexedQuadArray ( CubeIQA.java ) TriangleArray (
 * TetrahedronTA.java ) IndexedTriangleArray ( TetrahedronITA.java )
 * TriangleFanArray ( OctahedronTFA.java ) IndexedTriangleFanArray (
 * OctahedronITA.java ) TriangleStripArray ( IcosahedronTFA.java )
 * IndexedTriangleStripArray ( IcosahedronITA.java ) PointArray(
 * TetrahedronPA.java ) LineArray( TetrahedronLA.java ) IndexLineArray(
 * TetrahedronILA.java ) LineStripArray( TetrahedronLSA.java )
 * IndexLineStripArray( TetrahedronILSA.java )
 
 * Morph Object uses : QuadArray ( ColorCube.java, ColorPyramidDown.java, and
 * ColorPyramidUp.java ).
 */

public class PickTest extends Applet implements ActionListener {

  private View view = null;

  private QuadArray geomMorph[] new QuadArray[3];

  private Morph morph;

  private PickRotateBehavior behavior1;

  private PickZoomBehavior behavior2;

  private PickTranslateBehavior behavior3;

  private SimpleUniverse u = null;

  public BranchGroup createSceneGraph(Canvas3D canvas) {
    // Create the root of the branch graph
    BranchGroup objRoot = new BranchGroup();

    // Create a Transformgroup to scale all objects so they
    // appear in the scene.
    TransformGroup objScale = new TransformGroup();
    Transform3D t3d = new Transform3D();
    t3d.setScale(1.0);
    objScale.setTransform(t3d);
    objRoot.addChild(objScale);

    // Create a bunch of objects with a behavior and add them
    // into the scene graph.

    int row, col;
    int numRows = 4, numCols = 4;

    for (int i = 0; i < numRows; i++) {
      double ypos = (double) (i - numRows / 20.45 0.25;
      for (int j = 0; j < numCols; j++) {
        double xpos = (double) (j - numCols / 20.45 0.25;
        objScale
            .addChild(createObject(i * numCols + j, 0.1, xpos, ypos));
      }
    }

    BoundingSphere bounds = new BoundingSphere(new Point3d(0.00.00.0),
        100.0);

    // Add a light.
    Color3f lColor = new Color3f(1.0f1.0f1.0f);
    Vector3f lDir = new Vector3f(0.0f0.0f, -1.0f);

    DirectionalLight lgt = new DirectionalLight(lColor, lDir);
    lgt.setInfluencingBounds(bounds);
    objRoot.addChild(lgt);

    // Now create the Alpha object that controls the speed of the
    // morphing operation.
    Alpha morphAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE
        | Alpha.DECREASING_ENABLE, 004000100050040001000,
        500);

    // Finally, create the morphing behavior
    MorphingBehavior mBeh = new MorphingBehavior(morphAlpha, morph);
    mBeh.setSchedulingBounds(bounds);
    objRoot.addChild(mBeh);

    behavior1 = new PickRotateBehavior(objRoot, canvas, bounds);
    objRoot.addChild(behavior1);

    behavior2 = new PickZoomBehavior(objRoot, canvas, bounds);
    objRoot.addChild(behavior2);

    behavior3 = new PickTranslateBehavior(objRoot, canvas, bounds);
    objRoot.addChild(behavior3);

    // Let Java 3D perform optimizations on this scene graph.
    objRoot.compile();

    return objRoot;
  }

  private Group createObject(int index, double scale, double xpos, double ypos) {

    Shape3D shape = null;
    Geometry geom = null;

    // Create a transform group node to scale and position the object.
    Transform3D t = new Transform3D();
    t.set(scale, new Vector3d(xpos, ypos, 0.0));
    TransformGroup objTrans = new TransformGroup(t);
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    objTrans.setCapability(TransformGroup.ENABLE_PICK_REPORTING);

    // Create a second transform group node and initialize it to the
    // identity. Enable the TRANSFORM_WRITE capability so that
    // our behavior code can modify it at runtime.
    TransformGroup spinTg = new TransformGroup();
    spinTg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    spinTg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    spinTg.setCapability(TransformGroup.ENABLE_PICK_REPORTING);

    Appearance appearance = new Appearance();

    switch (index) {
    case 0:
      geom = new GullCG();
      break;
    case 1:
      geom = new TetrahedronTA();
      break;
    case 2:
      geom = new OctahedronTFA();
      break;
    case 3:
      geom = new IcosahedronTSA();
      break;
    case 4:
      geom = new CubeIQA();
      break;
    case 5:
      geom = new TetrahedronITA();
      break;
    case 6:
      geom = new OctahedronITFA();
      break;
    case 7:
      geom = new IcosahedronITSA();
      break;
    case 8:
      geomMorph[0new ColorPyramidUp();
      geomMorph[1new ColorCube();
      geomMorph[2new ColorPyramidDown();
      break;
    case 9:
      geom = new TetrahedronLA();
      break;
    case 10:
      geom = new TetrahedronILA();
      break;
    case 11:
      geom = new TetrahedronLSA();
      break;
    case 12:
      geom = new TetrahedronILSA();
      break;
    case 13:
      geom = new TetrahedronPA();
      break;
    case 14:
      geom = new TetrahedronIPA();
      break;
    // TODO: other geo types, Text3D?
    case 15:
      geom = new TetrahedronTA();
      break;
    }

    Material m = new Material();

    if (index == 8) {
      m.setLightingEnable(false);
      appearance.setMaterial(m);
      morph = new Morph((GeometryArray[]) geomMorph, appearance);
      morph.setCapability(Morph.ALLOW_WEIGHTS_READ);
      morph.setCapability(Morph.ALLOW_WEIGHTS_WRITE);
      PickTool.setCapabilities(morph, PickTool.INTERSECT_FULL);
      spinTg.addChild(morph);
    else {
      // Geometry picking require this to be set.
      if (index == 0)
        m.setLightingEnable(true);
      else
        m.setLightingEnable(false);
      appearance.setMaterial(m);

      if ((index == 13|| (index == 14)) {
        PointAttributes pa = new PointAttributes();
        pa.setPointSize(4.0f);
        appearance.setPointAttributes(pa);
      }

      shape = new Shape3D(geom, appearance);
      shape.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
      shape.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
      shape.setCapability(Shape3D.ENABLE_PICK_REPORTING);
      PickTool.setCapabilities(shape, PickTool.INTERSECT_FULL);
      spinTg.addChild(shape);
    }

    // add it to the scene graph.
    objTrans.addChild(spinTg);

    return objTrans;
  }

  private void setPickMode(int mode) {
    behavior1.setMode(mode);
    behavior2.setMode(mode);
    behavior3.setMode(mode);
  }

  private void setPickTolerance(float tolerance) {
    behavior1.setTolerance(tolerance);
    behavior2.setTolerance(tolerance);
    behavior3.setTolerance(tolerance);
  }

  private void setViewMode(int mode) {
    view.setProjectionPolicy(mode);
  }

  // GUI stuff

  String pickModeString = new String("Pick Mode");

  String boundsString = new String("BOUNDS");

  String geometryString = new String("GEOMETRY");

  String geometryIntersectString = new String("GEOMETRY_INTERSECT_INFO");

  String toleranceString = new String("Pick Tolerance");

  String tolerance0String = new String("0");

  String tolerance2String = new String("2");

  String tolerance4String = new String("4");

  String tolerance8String = new String("8");

  String viewModeString = new String("View Mode");

  String perspectiveString = new String("Perspective");

  String parallelString = new String("Parallel");

  private void addRadioButton(JPanel panel, ButtonGroup bg, String ownerName,
      String buttonName, boolean selected) {
    JRadioButton item;
    item = new JRadioButton(buttonName);
    item.setName(ownerName);
    item.addActionListener(this);
    if (selected) {
      item.setSelected(true);
    }
    panel.add(item);
    bg.add(item);
  }

  private void setupGUI(JPanel panel) {
    ButtonGroup bg;

    panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
    panel.setBorder(new BevelBorder(BevelBorder.RAISED));

    panel.add(new JLabel(pickModeString));
    bg = new ButtonGroup();
    addRadioButton(panel, bg, pickModeString, boundsString, true);
    addRadioButton(panel, bg, pickModeString, geometryString, false);
    addRadioButton(panel, bg, pickModeString, geometryIntersectString,
        false);

    panel.add(new JLabel(toleranceString));
    bg = new ButtonGroup();
    addRadioButton(panel, bg, toleranceString, tolerance0String, false);
    addRadioButton(panel, bg, toleranceString, tolerance2String, true);
    addRadioButton(panel, bg, toleranceString, tolerance4String, false);
    addRadioButton(panel, bg, toleranceString, tolerance8String, false);

    panel.add(new JLabel(viewModeString));
    bg = new ButtonGroup();
    addRadioButton(panel, bg, viewModeString, perspectiveString, true);
    addRadioButton(panel, bg, viewModeString, parallelString, false);

  }

  public void actionPerformed(ActionEvent e) {
    String name = ((Componente.getSource()).getName();
    String value = e.getActionCommand();
    //System.out.println("action: name = " + name + " value = " + value);
    if (name == pickModeString) {
      if (value == boundsString) {
        setPickMode(PickCanvas.BOUNDS);
      else if (value == geometryString) {
        setPickMode(PickCanvas.GEOMETRY);
      else if (value == geometryIntersectString) {
        setPickMode(PickCanvas.GEOMETRY_INTERSECT_INFO);
      else {
        System.out.println("Unknown pick mode: " + value);
      }
    else if (name == toleranceString) {
      if (value == tolerance0String) {
        setPickTolerance(0.0f);
      else if (value == tolerance2String) {
        setPickTolerance(2.0f);
      else if (value == tolerance4String) {
        setPickTolerance(4.0f);
      else if (value == tolerance8String) {
        setPickTolerance(8.0f);
      else {
        System.out.println("Unknown tolerance: " + value);
      }
    else if (name == viewModeString) {
      if (value == perspectiveString) {
        setViewMode(View.PERSPECTIVE_PROJECTION);
      else if (value == parallelString) {
        setViewMode(View.PARALLEL_PROJECTION);
      }
    else {
      System.out.println("Unknown action name: " + name);
    }
  }

  public PickTest() {
  }

  public void init() {
    setLayout(new BorderLayout());
    Canvas3D c = new Canvas3D(SimpleUniverse.getPreferredConfiguration());
    add("Center", c);

    JPanel guiPanel = new JPanel();
    setupGUI(guiPanel);
    add(guiPanel, BorderLayout.EAST);

    // Create a scene and attach it to the virtual universe
    BranchGroup scene = createSceneGraph(c);
    u = new SimpleUniverse(c);

    // This will move the ViewPlatform back a bit so the
    // objects in the scene can be viewed.
    u.getViewingPlatform().setNominalViewingTransform();
    view = u.getViewer().getView();

    u.addBranchGraph(scene);
  }

  public void destroy() {
    u.cleanup();
  }

  public static void main(String argv[]) {

    BranchGroup group;

    new MainFrame(new PickTest()750550);
  }
}

class TetrahedronILSA extends IndexedLineStripArray {

  private static final int[] lineLengths = 4};

  TetrahedronILSA() {
    super(4, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 8,
        lineLengths);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    int pntsIndex[] new int[8];
    int clrsIndex[] new int[8];

    pntsIndex[00;
    clrsIndex[00;
    pntsIndex[11;
    clrsIndex[11;
    pntsIndex[23;
    clrsIndex[23;
    pntsIndex[32;
    clrsIndex[32;

    pntsIndex[41;
    clrsIndex[41;
    pntsIndex[52;
    clrsIndex[52;
    pntsIndex[60;
    clrsIndex[60;
    pntsIndex[73;
    clrsIndex[73;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class TetrahedronILA extends IndexedLineArray {

  TetrahedronILA() {
    super(4, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 12);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    int[] pntsIndex = new int[12];
    int[] clrsIndex = new int[12];

    pntsIndex[00;
    clrsIndex[00;
    pntsIndex[11;
    clrsIndex[11;

    pntsIndex[21;
    clrsIndex[21;
    pntsIndex[32;
    clrsIndex[32;

    pntsIndex[42;
    clrsIndex[42;
    pntsIndex[50;
    clrsIndex[50;

    pntsIndex[61;
    clrsIndex[61;
    pntsIndex[73;
    clrsIndex[73;

    pntsIndex[82;
    clrsIndex[82;
    pntsIndex[93;
    clrsIndex[93;

    pntsIndex[100;
    clrsIndex[100;
    pntsIndex[113;
    clrsIndex[113;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class TetrahedronTA extends TriangleArray {

  TetrahedronTA() {
    super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    Point3f pnts[] new Point3f[12];
    Color3f clrs[] new Color3f[12];

    pnts[0= verts[2];
    clrs[0= colors[0];
    pnts[1= verts[1];
    clrs[1= colors[0];
    pnts[2= verts[0];
    clrs[2= colors[0];

    pnts[3= verts[3];
    clrs[3= colors[1];
    pnts[4= verts[2];
    clrs[4= colors[1];
    pnts[5= verts[0];
    clrs[5= colors[1];

    pnts[6= verts[1];
    clrs[6= colors[2];
    pnts[7= verts[2];
    clrs[7= colors[2];
    pnts[8= verts[3];
    clrs[8= colors[2];

    pnts[9= verts[1];
    clrs[9= colors[3];
    pnts[10= verts[3];
    clrs[10= colors[3];
    pnts[11= verts[0];
    clrs[11= colors[3];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class TetrahedronPA extends PointArray {

  TetrahedronPA() {
    super(4, GeometryArray.COORDINATES | GeometryArray.COLOR_3);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    setCoordinates(0, verts);
    setColors(0, colors);
  }
}

class TetrahedronLSA extends LineStripArray {
  private static final int[] lineLengths = 4};

  TetrahedronLSA() {
    super(8, GeometryArray.COORDINATES | GeometryArray.COLOR_3, lineLengths);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    Point3f pnts[] new Point3f[8];
    Color3f clrs[] new Color3f[8];

    pnts[0= verts[0];
    clrs[0= colors[0];
    pnts[1= verts[1];
    clrs[1= colors[1];
    pnts[2= verts[3];
    clrs[2= colors[3];
    pnts[3= verts[2];
    clrs[3= colors[2];

    pnts[4= verts[1];
    clrs[4= colors[1];
    pnts[5= verts[2];
    clrs[5= colors[2];
    pnts[6= verts[0];
    clrs[6= colors[0];
    pnts[7= verts[3];
    clrs[7= colors[3];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class TetrahedronLA extends LineArray {

  TetrahedronLA() {
    super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    Point3f pnts[] new Point3f[12];
    Color3f clrs[] new Color3f[12];

    pnts[0= verts[0];
    clrs[0= colors[0];
    pnts[1= verts[1];
    clrs[1= colors[1];

    pnts[2= verts[1];
    clrs[2= colors[1];
    pnts[3= verts[2];
    clrs[3= colors[2];

    pnts[4= verts[2];
    clrs[4= colors[2];
    pnts[5= verts[0];
    clrs[5= colors[0];

    pnts[6= verts[1];
    clrs[6= colors[1];
    pnts[7= verts[3];
    clrs[7= colors[3];

    pnts[8= verts[2];
    clrs[8= colors[2];
    pnts[9= verts[3];
    clrs[9= colors[3];

    pnts[10= verts[0];
    clrs[10= colors[0];
    pnts[11= verts[3];
    clrs[11= colors[3];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class TetrahedronITA extends IndexedTriangleArray {

  TetrahedronITA() {
    super(4, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 12);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    int pntsIndex[] new int[12];
    int clrsIndex[] new int[12];

    pntsIndex[02;
    clrsIndex[00;
    pntsIndex[11;
    clrsIndex[10;
    pntsIndex[20;
    clrsIndex[20;

    pntsIndex[33;
    clrsIndex[31;
    pntsIndex[42;
    clrsIndex[41;
    pntsIndex[50;
    clrsIndex[51;

    pntsIndex[61;
    clrsIndex[62;
    pntsIndex[72;
    clrsIndex[72;
    pntsIndex[83;
    clrsIndex[82;

    pntsIndex[91;
    clrsIndex[93;
    pntsIndex[103;
    clrsIndex[103;
    pntsIndex[110;
    clrsIndex[113;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class TetrahedronIPA extends IndexedPointArray {

  TetrahedronIPA() {
    super(4, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 4);

    Point3f verts[] new Point3f[4];
    Color3f colors[] new Color3f[4];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(1.0f, -1.0f, -1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(-1.0f1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);

    int pntsIndex[] new int[4];
    int clrsIndex[] new int[4];

    pntsIndex[0= clrsIndex[00;
    pntsIndex[1= clrsIndex[11;
    pntsIndex[2= clrsIndex[22;
    pntsIndex[3= clrsIndex[33;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class IcosahedronTSA extends TriangleStripArray {
  private static final int[] sVertCnt = 311545};

  IcosahedronTSA() {
    super(32, GeometryArray.COORDINATES | GeometryArray.COLOR_3, sVertCnt);

    Point3f verts[] new Point3f[12];
    Color3f colors[] new Color3f[12];

    verts[0new Point3f(0.0f1.4f0.8652f);
    verts[1new Point3f(0.0f1.4f, -0.8652f);
    verts[2new Point3f(1.4f0.8652f0.0f);
    verts[3new Point3f(1.4f, -0.8652f0.0f);
    verts[4new Point3f(0.0f, -1.4f, -0.8652f);
    verts[5new Point3f(0.0f, -1.4f0.8652f);
    verts[6new Point3f(0.8652f0.0f1.4f);
    verts[7new Point3f(-0.8652f0.0f1.4f);
    verts[8new Point3f(0.8652f0.0f, -1.4f);
    verts[9new Point3f(-0.8652f0.0f, -1.4f);
    verts[10new Point3f(-1.4f0.8652f0.0f);
    verts[11new Point3f(-1.4f, -0.8652f0.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(0.0f1.0f1.0f);
    colors[5new Color3f(1.0f0.0f1.0f);
    colors[6new Color3f(0.0f0.5f0.0f);
    colors[7new Color3f(0.0f0.0f0.5f);
    colors[8new Color3f(0.5f0.5f0.0f);
    colors[9new Color3f(0.0f0.5f0.5f);
    colors[10new Color3f(0.5f0.0f0.5f);
    colors[11new Color3f(0.5f0.5f0.5f);

    Point3f pnts[] new Point3f[32];
    Color3f clrs[] new Color3f[32];

    pnts[0= verts[4];
    clrs[0= colors[4];
    pnts[1= verts[5];
    clrs[1= colors[5];
    pnts[2= verts[11];
    clrs[2= colors[11];

    pnts[3= verts[11];
    clrs[3= colors[11];
    pnts[4= verts[5];
    clrs[4= colors[5];
    pnts[5= verts[7];
    clrs[5= colors[7];

    pnts[6= verts[6];
    clrs[6= colors[6];

    pnts[7= verts[0];
    clrs[7= colors[0];

    pnts[8= verts[2];
    clrs[8= colors[2];

    pnts[9= verts[1];
    clrs[9= colors[1];

    pnts[10= verts[8];
    clrs[10= colors[8];

    pnts[11= verts[9];
    clrs[11= colors[9];

    pnts[12= verts[4];
    clrs[12= colors[4];

    pnts[13= verts[11];
    clrs[13= colors[11];

    pnts[14= verts[2];
    clrs[14= colors[2];
    pnts[15= verts[6];
    clrs[15= colors[6];
    pnts[16= verts[3];
    clrs[16= colors[3];

    pnts[17= verts[5];
    clrs[17= colors[5];

    pnts[18= verts[4];
    clrs[18= colors[4];

    pnts[19= verts[4];
    clrs[19= colors[4];
    pnts[20= verts[8];
    clrs[20= colors[8];
    pnts[21= verts[3];
    clrs[21= colors[3];

    pnts[22= verts[2];
    clrs[22= colors[2];

    pnts[23= verts[0];
    clrs[23= colors[0];
    pnts[24= verts[1];
    clrs[24= colors[1];
    pnts[25= verts[10];
    clrs[25= colors[10];

    pnts[26= verts[9];
    clrs[26= colors[9];

    pnts[27= verts[11];
    clrs[27= colors[11];

    pnts[28= verts[0];
    clrs[28= colors[0];
    pnts[29= verts[10];
    clrs[29= colors[10];
    pnts[30= verts[7];
    clrs[30= colors[7];

    pnts[31= verts[11];
    clrs[31= colors[11];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class IcosahedronITSA extends IndexedTriangleStripArray {

  private static final int[] sVertCnt = 311545};

  IcosahedronITSA() {
    super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 32,
        sVertCnt);

    Point3f verts[] new Point3f[12];
    Color3f colors[] new Color3f[12];

    verts[0new Point3f(0.0f1.4f0.8652f);
    verts[1new Point3f(0.0f1.4f, -0.8652f);
    verts[2new Point3f(1.4f0.8652f0.0f);
    verts[3new Point3f(1.4f, -0.8652f0.0f);
    verts[4new Point3f(0.0f, -1.4f, -0.8652f);
    verts[5new Point3f(0.0f, -1.4f0.8652f);
    verts[6new Point3f(0.8652f0.0f1.4f);
    verts[7new Point3f(-0.8652f0.0f1.4f);
    verts[8new Point3f(0.8652f0.0f, -1.4f);
    verts[9new Point3f(-0.8652f0.0f, -1.4f);
    verts[10new Point3f(-1.4f0.8652f0.0f);
    verts[11new Point3f(-1.4f, -0.8652f0.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(0.0f1.0f1.0f);
    colors[5new Color3f(1.0f0.0f1.0f);
    colors[6new Color3f(0.0f0.5f0.0f);
    colors[7new Color3f(0.0f0.0f0.5f);
    colors[8new Color3f(0.5f0.5f0.0f);
    colors[9new Color3f(0.0f0.5f0.5f);
    colors[10new Color3f(0.5f0.0f0.5f);
    colors[11new Color3f(0.5f0.5f0.5f);

    int pntsIndex[] new int[32];
    int clrsIndex[] new int[32];

    pntsIndex[04;
    clrsIndex[04;
    pntsIndex[15;
    clrsIndex[15;
    pntsIndex[211;
    clrsIndex[211;

    pntsIndex[311;
    clrsIndex[311;
    pntsIndex[45;
    clrsIndex[45;
    pntsIndex[57;
    clrsIndex[57;

    pntsIndex[66;
    clrsIndex[66;

    pntsIndex[70;
    clrsIndex[70;

    pntsIndex[82;
    clrsIndex[82;

    pntsIndex[91;
    clrsIndex[91;

    pntsIndex[108;
    clrsIndex[108;

    pntsIndex[119;
    clrsIndex[119;

    pntsIndex[124;
    clrsIndex[124;

    pntsIndex[1311;
    clrsIndex[1311;

    pntsIndex[142;
    clrsIndex[142;
    pntsIndex[156;
    clrsIndex[156;
    pntsIndex[163;
    clrsIndex[163;

    pntsIndex[175;
    clrsIndex[175;

    pntsIndex[184;
    clrsIndex[184;

    pntsIndex[194;
    clrsIndex[194;
    pntsIndex[208;
    clrsIndex[208;
    pntsIndex[213;
    clrsIndex[213;

    pntsIndex[222;
    clrsIndex[222;

    pntsIndex[230;
    clrsIndex[230;
    pntsIndex[241;
    clrsIndex[241;
    pntsIndex[2510;
    clrsIndex[2510;

    pntsIndex[269;
    clrsIndex[269;

    pntsIndex[2711;
    clrsIndex[2711;

    pntsIndex[280;
    clrsIndex[280;
    pntsIndex[2910;
    clrsIndex[2910;
    pntsIndex[307;
    clrsIndex[307;

    pntsIndex[3111;
    clrsIndex[3111;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class OctahedronTFA extends TriangleFanArray {
  private static final int[] sVertCnt = 6};

  OctahedronTFA() {
    super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3, sVertCnt);

    Point3f verts[] new Point3f[6];
    Color3f colors[] new Color3f[6];

    verts[0new Point3f(0.0f0.0f, -1.5f);
    verts[1new Point3f(0.0f0.0f1.5f);
    verts[2new Point3f(0.0f, -1.5f0.0f);
    verts[3new Point3f(0.0f1.5f0.0f);
    verts[4new Point3f(1.5f0.0f0.0f);
    verts[5new Point3f(-1.5f0.0f0.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(1.0f0.0f1.0f);
    colors[5new Color3f(0.0f1.0f1.0f);

    Point3f pnts[] new Point3f[12];
    Color3f clrs[] new Color3f[12];

    pnts[0= verts[4];
    clrs[0= colors[4];
    pnts[1= verts[2];
    clrs[1= colors[2];
    pnts[2= verts[0];
    clrs[2= colors[0];

    pnts[3= verts[3];
    clrs[3= colors[3];

    pnts[4= verts[1];
    clrs[4= colors[1];

    pnts[5= verts[2];
    clrs[5= colors[2];

    pnts[6= verts[5];
    clrs[6= colors[5];
    pnts[7= verts[1];
    clrs[7= colors[1];
    pnts[8= verts[3];
    clrs[8= colors[3];

    pnts[9= verts[0];
    clrs[9= colors[0];

    pnts[10= verts[2];
    clrs[10= colors[2];

    pnts[11= verts[1];
    clrs[11= colors[1];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class OctahedronITFA extends IndexedTriangleFanArray {
  private static final int[] sVertCnt = 6};

  OctahedronITFA() {
    super(6, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 12,
        sVertCnt);

    Point3f verts[] new Point3f[6];
    Color3f colors[] new Color3f[6];

    verts[0new Point3f(0.0f0.0f, -1.5f);
    verts[1new Point3f(0.0f0.0f1.5f);
    verts[2new Point3f(0.0f, -1.5f0.0f);
    verts[3new Point3f(0.0f1.5f0.0f);
    verts[4new Point3f(1.5f0.0f0.0f);
    verts[5new Point3f(-1.5f0.0f0.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(1.0f0.0f1.0f);
    colors[5new Color3f(0.0f1.0f1.0f);

    int pntsIndex[] new int[12];
    int clrsIndex[] new int[12];

    pntsIndex[04;
    clrsIndex[04;
    pntsIndex[12;
    clrsIndex[12;
    pntsIndex[20;
    clrsIndex[20;

    pntsIndex[33;
    clrsIndex[33;

    pntsIndex[41;
    clrsIndex[41;

    pntsIndex[52;
    clrsIndex[52;

    pntsIndex[65;
    clrsIndex[65;
    pntsIndex[71;
    clrsIndex[71;
    pntsIndex[83;
    clrsIndex[83;

    pntsIndex[90;
    clrsIndex[90;

    pntsIndex[102;
    clrsIndex[102;

    pntsIndex[111;
    clrsIndex[111;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class GullCG extends CompressedGeometry {

  GullCG() {
    super(cgHeader, cgData);
  }

  private static final byte cgData[] 250, -12016, -58, -5233, -35,
      -12867, -360, -127, -7297146422910442, -458,
      125, -891651, -11633, -1, -10471, -6448, -10631132,
      -522, -1276553210, -78, -128201464074, -128,
      81, -4324, -9444186, -10498, -964953411210,
      -68, -2921, -115, -56408, -6481, -74, -128, -901349,
      71302, -81, -68, -30, -621225637, -10760, -1091200,
      026, -321885, -12814, -1671, -1366, -33103127, -81,
      78, -61, -106, -11201, -3213, -86, -964, -103, -3659,
      -2325391811122, -801, -34, -22, -112, -109, -80, -71,
      -7, -39, -400, -12700004397, -1021181683, -32,
      -121, -87, -32, -86, -432121833, -48, -100, -396400,
      500, -47, -9, -97, -1185375, -12289, -54, -108069,
      -9800543, -67029, -1726405126, -93, -56, -31,
      1574, -95, -1285, -6403, -468036005893, -92,
      00300874023468366430, -17, -25, -121, -40,
      22134878, -4373, -64, -104851, -25, -1, -82, -653,
      55, -7141124, -50, -118, -644, -10211201, -20598,
      59, -58, -95, -8742, -9, -112, -99, -107, -91, -11127536,
      -46, -1121219, -39, -17, -1, -410001124, -121, -19,
      -124, -16, -4466, -4036116, -83, -96, -1287, -37100, -37,
      12111123, -81, -106438214, -85, -841, -95678118,
      1251539, -114, -8863, -100, -115473, -381380,
      -647645614, -561083, -64965, -33812411, -115,
      26, -95, -10495, -69, -95, -112150, -128403067, -271,
      107, -55102, -39976710366796737, -6062, -95, -88,
      -3210572106, -113, -59, -10854, -6443509863045,
      7210131, -51, -120106, -875, -2498111, -106, -1254,
      104544787, -115, -61, -10664, -4713, -8010, -116, -122,
      39, -3118, -7000042, -13, -1182796927, -2071,
      -8, -96, -506111187102, -83, -93, -5447, -3751, -113,
      2712298, -52, -91, -75153, -96897, -12054, -4455,
      -1, -10105, -108, -84, -4, -101, -646741, -410567117,
      -609267115, -4, -65124, -1259064118, -85976739,
      1269667788065, -1512, -57619467503, -9333,
      -107, -2, -441691, -34, -115, -881092475, -120109,
      -113, -108204952591222551, -2923, -85, -3933,
      -50, -28104, -122, -1620, -1289067201, -93124,
      -1223191113, -5913, -55, -712112, -5710, -10, -122,
      12001, -88, -5633, -49, -5994, -78, -45, -856, -33,
      105, -55, -121, -7799, -11391105, -277, -3770, -118, -2,
      52102, -122, -45, -120, -66, -12225, -765651967, -69,
      33, -921002316, -373140113, -90120118, -84,
      -48, -55, -17, -3716, -5962, -8828, -12621701, -1083,
      801, -9645107, -11512458, -60102, -128076427,
      -60125, -10712742, -40, -8357, -15, -711, -32, -50, -60,
      4212310660, -16, -32, -668526, -14, -3182, -20, -49,
      -128, -12094, -640, -25508526, -52, -8023, -217,
      -120111853, -5575, -83, -96224, -16000418,
      -7792, -101, -6488472, -22, -3385, -126, -42, -69, -41,
      -79, -49, -69126, -12850, -1, -128125540, -5347110,
      91, -596413119115, -596393, -28, -6, -23, -61, -1281,
      4000807564, -18, -33, -123, -2, -117, -74, -11626,
      -106, -80691, -7021, -23, -440, -121127640538,
      -73118, -79, -1141041180, -587285, -4694115,
      -112, -11772124100, -3210610681, -98, -121, -100116,
      76, -121, -23, -112404340, -9257, -96412147, -29,
      -6581, -262, -12816662, -8586, -67, -874, -35, -77,
      -62, -5, -81, -1065600311, -91, -4806727, -62100,
      43806861, -481240451, -167181, -23, -88, -84,
      127, -61137, -981457107, -61, -52, -114, -128191,
      -92, -95, -82, -12816, -6411080, -12855111, -10196,
      -8061, -90, -9412249, -2114, -2, -7399115811190,
      -11874, -9930, -9, -967, -57804279, -143, -86, -91,
      -9451, -18364, -1185053, -5974, -89126, -233213,
      5740, -1237697, -4191, -115, -23107, -83, -378167,
      27, -73, -1135822, -8048864109, -10, -6414, -80, -19,
      -431562, -80, -116, -14, -121, -11110, -2538, -109355,
      -10385, -65, -79, -117, -3766, -10297, -70, -12343104,
      -128211004071, -55, -12510433, -438284, -1027,
      -3, -32, -11420, -37, -27, -4, -107116673, -7, -91, -9,
      -99, -25, -44, -71, -5745, -757401107, -120, -19, -92,
      21, -661008, -124, -6, -7918, -44, -271212, -112, -32,
      -108, -6899123, -89, -3998, -5351, -10, -1281042, -48,
      -9, -108, -34, -100, -7, -52, -123, -39100, -468545160,
      1297, -58, -2532111, -320, -480, -4810, -7386, -18,
      104114, -102, -80320880647, -25, -12766, -6, -75,
      747378, -51, -1254, -103, -88178, -62548490, -14,
      3235, -18, -40, -67, -44106, -102, -1282107, -24, -124,
      -6466, -5115100, -8744070125, -120953350123,
      70830, -11512222, -1023592, -11294, -87, -121, -66,
      -64, -105, -65, -1517, -22122, -803394, -5575, -35,
      1146599999428, -52, -3, -7742, -16, -24, -878412,
      -767690110, -120086, -36, -95850, -122, -62, -125,
      9767130, -127, -78, -1963, -3, -46800, -84010,
      -12846340455114, -8, -3816, -59, -1284, -90, -35,
      -831116421, -128396303, -11212, -111, -12013,
      -2414, -3252916112123, -6, -6086822559, -56,
      11, -74, -1640, -104, -91016, -53592910143119,
      -41, -23, -100674815610, -632191, -27, -31, -124,
      5, -40, -22, -9046, -78, -128599, -6400019, -12833,
      -1065, -44, -26, -57, -97, -113, -6420, -9372255488,
      1118031, -3231, -1612, -30, -26, -889, -69, -128898,
      3641205, -67118, -1259, -118, -122, -115122, -6, -122,
      -125, -95, -77, -95, -10573, -28, -6, -122, -86, -12751, -95,
      -105125, -22, -6, -122, -38, -31, -6584, -86, -149571, -97,
      67111, -66, -81, -47, -12492221, -431611397, -18,
      -63, -82, -46, -120106, -110, -122, -1712097, -878267,
      -9975, -48, -3395792, -32, -32, -104134108103,
      79, -105, -115112112703218451, -101, -5318814,
      -62, -83721007272, -2410271, -73, -1171730, -65,
      -32, -4036446, -51764496, -440, -5710254, -31,
      -2800, -7198, -72804682, -64896, -80032016,
      855106, -98, -121, -196411, -108361038, -8880,
      46, -116, -101104, -12850, -541129373640115, -128,
      03, -3214, -10025960, -66002249, -6412, -76,
      -12435, -95561, -10011, -3212219820114, -38,
      16, -18, -124, -327, -40047, -1280510497, -538,
      127, -7035, -12829, -320, -6600207, -17104124,
      -7047, -34011, -320193124, -78, -121, -29, -9356,
      022011, -320182, -58122, -3831110, -101125,
      -1282, -80086, -2628, -74, -121, -29, -92561, -106,
      011, -3201, -2, -10403553, -12765, -823438, -51,
      -74, -340, -7112366111, -63, -241611201700,
      215, -48, -125109487, -118, -12583, -6810115, -112,
      10, -12818, -47, -8961121, -867758161099265,
      86127, -82, -10031960640030, -768, -116320,
      3, -32287213, -110, -12543017107, -6423, -920,
      46, -641, -9613191, -1121125, -2, -66, -122, -110,
      -104811930, -2602189648, -11220511638, -51,
      126675633, -82, -78, -87, -117, -1010, -52, -86, -18, -97,
      12062, -4767, -9, -8681, -17080245, -127, -5, -38,
      04767, -9, -1284002, -80, -1977, -9, -8281, -53,
      0800541123, -19, -96, -14, -11, -565796100,
      0, -82, -1160125, -1083130, -7171, -680320021,
      7, -5310461, -673505961000, -84345, -96,
      -8, -1112021, -1284003, -815, -77, -64, -10816,
      -301461105, -40, -8127124, -7564406, -11, -5432,
      -321000, -111, -63, -106, -116, -1251155033760,
      1, -6461, -962526, -116243766, -113, -55427719,
      -35, -4, -73, -111, -110, -1412, -23120101, -91001,
      010470043, -39, -99, -467845, -558, -302, -12727,
      44, -2280, -11853, -2458, -3, -17, -76, -90951855, -16,
      -39, -4, -121, -55, -25, -11, -38856860, -7615, -5124,
      40086, -1412, -23124, -16630, -69, -911022, -128,
      16648314394, -450421490, -126, -95107, -18,
      -960, -10271, -11, -6816, -3711, -59122, -2641, -64,
      591, -382480, -48564015, -46104, -82, -57, -19, -4,
      -1151151129220, -28, -3, -12764125, -64127, -6456,
      -125, -113741184378, -3510747, -1891, -121, -1110,
      00126, -12863, -2331102, -653253, -30, -10410286,
      -16, -168862, -203124, -11, -56178016, -127,
      -1041018102, -5181220860191, -12010, -3234,
      -55651116416119, -1285, -128983, -82, -103100,
      -6407, -8031, -111, -12811, -1088916106, -107, -56,
      1118, -75, -10121, -920, -69121532, -7943, -1042,
      -20123, -2, -51721118, -640, -5, -10548224560,
      4042, -15909093, -41, -11786, -87, -8967086,
      -98, -941211, -66, -340, -64181086, -40211150,
      70, -281, -221, -140, -1263312, -8738, -3, -30, -104,
      -2812489, -63, -5877, -76, -79, -89988, -647056,
      11, -6259, -451846, -62, -51, -1281409625, -128, -33,
      936445, -35, -101120310, -9658, -128, -122, -12070,
      01, -3912012420, -8070, -36, -12711916, -122,
      -16620, -128126, -1954701211082617, -117107,
      -52, -3035, -361993, -12828102, -39, -122, -611181,
      1202810, -128, -13114, -331466, -109748224,
      -243, -52, -92110123124, -96867408, -87, -111,
      -117, -71, -98, -12473, -12839630210583264, -74,
      4148, -6, -67, -105, -5643106, -53, -750671132121,
      -891144, -12857, -6080, -5056, -10716, -46, -6445,
      7296881078105, -6455, -31, -112108, -89, -76, -590,
      107, -1244226, -53, -21, -1169214, -100, -107, -109, -62,
      946433, -75, -128, -121, -12, -102, -12217, -11910167,
      8827, -274113, -7622, -20, -12600007167113,
      -6651, -95, -92, -12212, -94, -12633, -131033546, -1,
      -474068, -1014841, -100, -119, -794760836467,
      101, -12251, -103, -119107, -62, -102112822, -242,
      -737769132249, -73, -89, -63898, -45, -21, -1610,
      5041, -8774, -76539175, -43, -400421, -9636, -46,
      0111, -85579493119, -10411617, -104, -658497,
      100, -1023715, -681267347, -111115, -53, -46, -720,
      102, -60, -1231191, -5464420118719201212,
      -128, -34, -55, -6574, -85, -11178, -125, -3127, -100, -111,
      -80, -12810, -108, -56161, -109, -2421, -44, -115, -9, -32,
      -16353714, -22, -69, -106, -1564345, -223386, -64,
      32, -41321175262, -27, -101, -118, -74, -125, -6656, -13,
      93113, -562179, -76, -1280, -103122126, -482093,
      -904742, -40817, -83, -94, -33893, -113107962,
      -12823109, -25, -813390033, -1185, -44, -54, -64,
      127, -1136416, -64280151, -5, -27, -38, -16, -8341,
      -11815, -37, -57, -79, -94, -5150, -59, -4720, -596415,
      -75107, -53, -91, -96, -9, -128148008094, -1992,
      -10, -127, -200148212583, -24, -12156, -12461, -67,
      -88, -736412000840, -61, -199932, -33, -26, -76,
      -26, -17, -51, -12238, -111, -84, -361293, -77, -66, -85,
      -860107, -686, -3692, -7430102716439378, -80,
      -75, -7593, -6, -57, -74, -7979, -1097822117108,
      -1111225296, -4938, -117, -125123101141218596,
      -480, -9631161339, -4211350, -109, -9905993,
      15, -8, -79116, -1477, -12829104, -19, -42, -97, -94, -62,
      6, -33440, -5108, -391, -197, -83, -27814924, -12,
      -109123, -516039111, -5023, -7853, -1014, -80, -93,
      122, -8733, -78, -3059, -95, -9610, -1280306192,
      -112, -53, -25104, -7624, -7993732224, -571109,
      65726, -9859106, -101103, -64, -116, -52112923,
      106107106, -51, -15120, -5, -20154, -16, -47, -77038,
      -81, -5418, -832, -1226970117234400300, -68,
      0109, -128, -45, -3780485118, -25, -8550110108,
      -11151, -472316, -964599, -51, -110, -1296, -63, -42,
      2012089864112032541, -5013, -99104, -100,
      -12810, -8016010415, -1045106, -85125957, -1,
      91, -160447, -323, -105540, -18065, -126, -6466,
      -20, -3766, -599564455, -202613, -37, -126125,
      -106, -48113, -48, -65, -90, -126, -79, -12321328108,
      95, -91, -11111544, -101, -1121821601031, -510,
      -112, -14103, -112, -1229846, -43, -7141126, -760, -71,
      792127108, -2, -1282310993, -111, -7490033, -96,
      63, -94, -107, -867092, -6421, -67640, -128127, -64,
      51023126, -4069680, -10171, -5, -84, -127, -82104,
      -1238580, -55, -8147, -88109, -4627, -1174, -8349,
      -351161131120860, -7215324, -3712411126,
      -116, -3211, -11312640, -92033, -110, -28753, -51,
      64, -81, -5174, -36121, -4102, -15117, -19493, -324,
      49096603, -232619, -124, -923313, -94, -16, -6,
      -122, -83, -1275433, -118, -99, -7932, -10711230, -8,
      -122, -125, -66, -77, -95, -9112216, -114, -12292123113,
      6569125125676648, -4380, -5378, -49293710,
      121, -5936, -61, -114, -109, -28103, -92046, -57, -11572,
      127, -120, -55101, -48, -119, -11722, -64125, -11021,
      -60662643, -21, -59, -55, -62, -58, -2146, -96, -12825,
      101001, -64319641, -75, -73, -55820, -899413,
      -76, -5674, -18311572, -21, -1044356, -75, -32, -10,
      74, -11, -661261172113, -4029, -51, -12, -1276, -85,
      -116, -857830, -65, -44, -111, -1, -95, -11162, -3368, -55,
      -29, -91112, -9337172, -111, -1140125, -96, -32, -38,
      97076, -1025, -28, -116, -109, -53, -58, -7, -37, -7010,
      114100, -105, -47, -535946, -37, -23642, -73112103,
      -164102, -1810421, -4070, -7008801, -113, -123,
      88, -89, -55, -112, -84, -45, -107, -8228, -128401052455,
      61, -73, -4015, -7208447, -2788, -18, -37450104,
      -11131, -27, -4, -115115111, -9222, -12, -10, -1283,
      -12810378, -569712710481052453, -2, -43119,
      -21, -12, -13104, -9571, -19, -413, -13, -57, -2016, -16,
      -36, -84958852, -5817897, -68, -67120, -40066,
      1, -9640642, -20, -2, -57, -882, -840380, -1621,
      -260, -102, -38, -12, -115880881, -32439557, -9,
      -11532, -3113, -28, -4531, -62577, -5, -30, -105106,
      10259, -443275605269661354, -2401, -56,
      11092, -704085113016, -42, -7973, -731066621,
      1046411, -79, -20111432188119, -60149616,
      -346403263, -3223, -48, -3582, -20, -92110, -102,
      -155286724178335258, -84, -120, -4150, -55,
      -6512339, -426, -717119112660249887124,
      1960, -112, -4111163, -969, -119, -1094724113, -108,
      -126552, -6688, -60120, -127, -2418, -6478409932,
      -2156, -5, -66100, -8019, -116, -3777, -75, -18, -6433,
      -1283, -128, -8025, -471, -12261103392054, -81,
      -54, -99, -112, -6470, -5611, -63106, -71, -25100, -103,
      51028364510, -3390, -4489, -39, -101831396,
      440, -12210191146700, -1, -64, -1088358267,
      -71843064, -1, -64, -1, -1281261, -11010195, -6,
      -3711309, -7919, -2611241, -51, -8318113, -10852,
      -113, -25, -44543313, -59135, -119712, -588, -50,
      -12290, -17, -102, -4626, -829, -80, -11683, -23, -5669,
      73840, -287, -1234717, -6843, -26, -62329225,
      -15, -4324113, -98, -18, -64, -122, -5112098, -10224,
      71, -35, -12759048, -42, -9249, -363611652, -29, -21,
      -1172, -5921, -22106, -14, -73, -16361619105110,
      -105, -1641715480, -3810973, -110, -6321723538,
      59498, -10924882972, -1255091, -93169, -77,
      -5312620, -6433258, -908, -1091026141, -11270,
      65, -975173822, -128335125, -4, -14, -62, -95, -106,
      -103, -66, -8270, -60, -161151730, -40111, -80,
      -126, -1207565, -47, -42, -58126, -55, -1280159652,
      11514, -3779, -70711060, -1027434124, -25105,
      112, -24, -46, -6810523, -34, -3495, -2069, -3750, -98,
      817, -11397207233, -10788, -45, -56, -49, -80, -85,
      -303685, -7796833, -94, -67, -9772, -5235, -108, -95,
      2396402240641287, -122, -927, -2328, -73, -6,
      -26, -112224, -44116852, -116, -109, -24, -101, -3456,
      1, -741601, -161461895651, -21, -107, -101, -72,
      -176446, -642, -80131, -3716140000, -63,
      118101, -10391, -60324, -40525811964320, -52,
      000, -120 };

  private static final CompressedGeometryHeader cgHeader;

  static {
    cgHeader = new CompressedGeometryHeader();
    cgHeader.majorVersionNumber = 1;
    cgHeader.minorVersionNumber = 0;
    cgHeader.minorMinorVersionNumber = 1;
    cgHeader.bufferType = CompressedGeometryHeader.TRIANGLE_BUFFER;
    cgHeader.bufferDataPresent = CompressedGeometryHeader.NORMAL_IN_BUFFER;
    cgHeader.start = 0;
    cgHeader.size = cgData.length;
  }
}

class CubeQA extends QuadArray {
  CubeQA() {
    super(24, GeometryArray.COORDINATES | GeometryArray.COLOR_3);

    Point3f verts[] new Point3f[8];
    Color3f colors[] new Color3f[6];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(-1.0f1.0f1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(1.0f, -1.0f1.0f);
    verts[4new Point3f(1.0f1.0f, -1.0f);
    verts[5new Point3f(-1.0f1.0f, -1.0f);
    verts[6new Point3f(-1.0f, -1.0f, -1.0f);
    verts[7new Point3f(1.0f, -1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(1.0f0.0f1.0f);
    colors[5new Color3f(0.0f1.0f1.0f);

    Point3f pnts[] new Point3f[24];
    Color3f clrs[] new Color3f[24];

    pnts[0= verts[0];
    clrs[0= colors[0];
    pnts[1= verts[3];
    clrs[1= colors[0];
    pnts[2= verts[7];
    clrs[2= colors[0];
    pnts[3= verts[4];
    clrs[3= colors[0];

    pnts[4= verts[1];
    clrs[4= colors[1];
    pnts[5= verts[5];
    clrs[5= colors[1];
    pnts[6= verts[6];
    clrs[6= colors[1];
    pnts[7= verts[2];
    clrs[7= colors[1];

    pnts[8= verts[0];
    clrs[8= colors[2];
    pnts[9= verts[4];
    clrs[9= colors[2];
    pnts[10= verts[5];
    clrs[10= colors[2];
    pnts[11= verts[1];
    clrs[11= colors[2];

    pnts[12= verts[3];
    clrs[12= colors[3];
    pnts[13= verts[2];
    clrs[13= colors[3];
    pnts[14= verts[6];
    clrs[14= colors[3];
    pnts[15= verts[7];
    clrs[15= colors[3];

    pnts[16= verts[0];
    clrs[16= colors[4];
    pnts[17= verts[1];
    clrs[17= colors[4];
    pnts[18= verts[2];
    clrs[18= colors[4];
    pnts[19= verts[3];
    clrs[19= colors[4];

    pnts[20= verts[7];
    clrs[20= colors[5];
    pnts[21= verts[6];
    clrs[21= colors[5];
    pnts[22= verts[5];
    clrs[22= colors[5];
    pnts[23= verts[4];
    clrs[23= colors[5];

    setCoordinates(0, pnts);
    setColors(0, clrs);
  }
}

class CubeIQA extends IndexedQuadArray {
  CubeIQA() {
    super(8, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 24);

    Point3f verts[] new Point3f[8];
    Color3f colors[] new Color3f[8];

    verts[0new Point3f(1.0f1.0f1.0f);
    verts[1new Point3f(-1.0f1.0f1.0f);
    verts[2new Point3f(-1.0f, -1.0f1.0f);
    verts[3new Point3f(1.0f, -1.0f1.0f);
    verts[4new Point3f(1.0f1.0f, -1.0f);
    verts[5new Point3f(-1.0f1.0f, -1.0f);
    verts[6new Point3f(-1.0f, -1.0f, -1.0f);
    verts[7new Point3f(1.0f, -1.0f, -1.0f);

    colors[0new Color3f(1.0f0.0f0.0f);
    colors[1new Color3f(0.0f1.0f0.0f);
    colors[2new Color3f(0.0f0.0f1.0f);
    colors[3new Color3f(1.0f1.0f0.0f);
    colors[4new Color3f(1.0f0.0f1.0f);
    colors[5new Color3f(0.0f1.0f1.0f);
    colors[6new Color3f(0.0f1.0f1.0f);
    colors[7new Color3f(0.0f1.0f1.0f);

    int pntsIndex[] new int[24];
    int clrsIndex[] new int[24];

    pntsIndex[00;
    clrsIndex[00;
    pntsIndex[13;
    clrsIndex[10;
    pntsIndex[27;
    clrsIndex[20;
    pntsIndex[34;
    clrsIndex[30;

    pntsIndex[41;
    clrsIndex[41;
    pntsIndex[55;
    clrsIndex[51;
    pntsIndex[66;
    clrsIndex[61;
    pntsIndex[72;
    clrsIndex[71;

    pntsIndex[80;
    clrsIndex[82;
    pntsIndex[94;
    clrsIndex[92;
    pntsIndex[105;
    clrsIndex[102;
    pntsIndex[111;
    clrsIndex[112;

    pntsIndex[123;
    clrsIndex[123;
    pntsIndex[132;
    clrsIndex[133;
    pntsIndex[146;
    clrsIndex[143;
    pntsIndex[157;
    clrsIndex[153;

    pntsIndex[160;
    clrsIndex[164;
    pntsIndex[171;
    clrsIndex[174;
    pntsIndex[182;
    clrsIndex[184;
    pntsIndex[193;
    clrsIndex[194;

    pntsIndex[207;
    clrsIndex[205;
    pntsIndex[216;
    clrsIndex[215;
    pntsIndex[225;
    clrsIndex[225;
    pntsIndex[234;
    clrsIndex[235;

    setCoordinates(0, verts);
    setCoordinateIndices(0, pntsIndex);
    setColors(0, colors);
    setColorIndices(0, clrsIndex);
  }
}

class ColorPyramidUp extends QuadArray {
  private static final float[] verts = {
  // front face
      1.0f, -1.0f1.0f0.0f1.0f0.0f0.0f1.0f0.0f, -1.0f,
      -1.0f1.0f,
      // back face
      -1.0f, -1.0f, -1.0f0.0f1.0f0.0f0.0f1.0f0.0f1.0f,
      -1.0f, -1.0f,
      // right face
      1.0f, -1.0f, -1.0f0.0f1.0f0.0f0.0f1.0f0.0f1.0f,
      -1.0f1.0f,
      // left face
      -1.0f, -1.0f1.0f0.0f1.0f0.0f0.0f1.0f0.0f, -1.0f,
      -1.0f, -1.0f,
      // top face
      0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f,
      0.0f,
      // bottom face
      -1.0f, -1.0f1.0f, -1.0f, -1.0f, -1.0f1.0f, -1.0f, -1.0f1.0f,
      -1.0f1.0f};

  private static final float[] colors = {

  // front face (cyan)
      0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f,
      1.0f,
      // back face (magenta)
      1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f,
      1.0f,
      // right face (yellow)
      1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f,
      0.0f,
      // left face (blue)
      0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f,
      1.0f,
      // top face (green)
      0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f,
      0.0f,
      // bottom face (red)
      1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f,
      0.0f,

  };

  ColorPyramidUp() {
    super(24, QuadArray.COORDINATES | QuadArray.COLOR_3);

    setCoordinates(0, verts);
    setColors(0, colors);
  }
}

class ColorPyramidDown extends QuadArray {
  private static final float[] verts = {
  // front face
      0.0f, -1.0f0.0f1.0f1.0f1.0f, -1.0f1.0f1.0f0.0f,
      -1.0f0.0f,
      // back face
      0.0f, -1.0f0.0f, -1.0f1.0f, -1.0f1.0f1.0f, -1.0f0.0f,
      -1.0f0.0f,
      // right face
      0.0f, -1.0f0.0f1.0f1.0f, -1.0f1.0f1.0f1.0f0.0f,
      -1.0f0.0f,
      // left face
      0.0f, -1.0f0.0f, -1.0f1.0f1.0f, -1.0f1.0f, -1.0f0.0f,
      -1.0f0.0f,
      // top face
      1.0f1.0f1.0f1.0f1.0f, -1.0f, -1.0f1.0f, -1.0f, -1.0f,
      1.0f1.0f,
      // bottom face
      0.0f, -1.0f0.0f0.0f, -1.0f0.0f0.0f, -1.0f0.0f0.0f,
      -1.0f0.0f};

  private static final float[] colors = {
  // front face (green)
      0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f,
      0.0f,
      // back face (red)
      1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f,
      0.0f,
      // right face (yellow)
      1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f,
      0.0f,
      // left face (magenta)
      1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f,
      1.0f,
      // top face (blue)
      0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f,
      1.0f,
      // bottom face (cyan)
      0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f,
      1.0f};

  ColorPyramidDown() {
    super(24, QuadArray.COORDINATES | QuadArray.COLOR_3);

    setCoordinates(0, verts);
    setColors(0, colors);
  }
}

class ColorCube extends QuadArray {
  private static final float[] verts = {
  // front face
      1.0f, -1.0f1.0f1.0f1.0f1.0f, -1.0f1.0f1.0f, -1.0f,
      -1.0f1.0f,
      // back face
      -1.0f, -1.0f, -1.0f, -1.0f1.0f, -1.0f1.0f1.0f, -1.0f1.0f,
      -1.0f, -1.0f,
      // right face
      1.0f, -1.0f, -1.0f1.0f1.0f, -1.0f1.0f1.0f1.0f1.0f,
      -1.0f1.0f,
      // left face
      -1.0f, -1.0f1.0f, -1.0f1.0f1.0f, -1.0f1.0f, -1.0f, -1.0f,
      -1.0f, -1.0f,
      // top face
      1.0f1.0f1.0f1.0f1.0f, -1.0f, -1.0f1.0f, -1.0f, -1.0f,
      1.0f1.0f,
      // bottom face
      -1.0f, -1.0f1.0f, -1.0f, -1.0f, -1.0f1.0f, -1.0f, -1.0f1.0f,
      -1.0f1.0f};

  private static final float[] colors = {
  // front face (red)
      1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f,
      0.0f,
      // back face (green)
      0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f,
      0.0f,
      // right face (blue)
      0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f1.0f0.0f0.0f,
      1.0f,
      // left face (yellow)
      1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f,
      0.0f,
      // top face (magenta)
      1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f,
      1.0f,
      // bottom face (cyan)
      0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f1.0f0.0f1.0f,
      1.0f};

  ColorCube() {
    super(24, QuadArray.COORDINATES | QuadArray.COLOR_3);

    setCoordinates(0, verts);
    setColors(0, colors);
  }
}

//User-defined morphing behavior class

class MorphingBehavior extends Behavior {

  Alpha alpha;

  Morph morph;

  double weights[];

  WakeupOnElapsedFrames w = new WakeupOnElapsedFrames(0);

  // Override Behavior's initialize method to setup wakeup criteria
  public void initialize() {
    alpha.setStartTime(System.currentTimeMillis());

    // Establish initial wakeup criteria
    wakeupOn(w);
  }

  // Override Behavior's stimulus method to handle the event
  public void processStimulus(Enumeration criteria) {

    // NOTE: This assumes 3 objects. It should be generalized to
    // "n" objects.

    double val = alpha.value();
    if (val < 0.5) {
      double a = val * 2.0;
      weights[01.0 - a;
      weights[1= a;
      weights[20.0;
    else {
      double a = (val - 0.52.0;
      weights[00.0;
      weights[11.0f - a;
      weights[2= a;
    }

    morph.setWeights(weights);

    // Set wakeup criteria for next time
    wakeupOn(w);
  }

  public MorphingBehavior(Alpha a, Morph m) {
    alpha = a;
    morph = m;
    weights = morph.getWeights();
  }
}


class BoltCG extends CompressedGeometry {

  BoltCG() {
    super(cgHeader, cgData);
  }

  private static final byte cgData[] 250, -12016, -1246433, -35,
      0676048, -1219013116, -6225105, -6060, -328,
      5, -5816, -9, -11432, -1, -10467160, -117, -1289740,
      62, -62, -128, -1225674810, -76, -3221164010,
      -12886, -12324, -96766574882, -117, -80, -5921,
      113, -118, -40, -282111064027648123, -124, -747,
      5413, -3, -4694025, -69, -99, -1236484836416,
      231697, -398, -20, -12503621, -12328, -12048,
      271229165, -67108182613, -12, -3595, -4810763,
      -591, -461284, -44, -53, -12054, -45, -9811564, -69,
      92126, -5516, -8034, -49, -2453, -3061, -1996, -76,
      10, -115, -245387, -54, -2, -12711368, -15, -331697,
      -9113, -54, -30127534, -48, -4810786, -32, -10, -125,
      97, -4219, -78120, -484468812, -67, -6932, -64,
      9009265, -12111642101398, -52, -971634104,
      114756612, -4511, -8232, -34, -74, -127, -1567451,
      70, -8132, -4227105136, -9713111, -2422, -1222,
      -19, -956, -49, -85, -4816107244, -8, -125673, -123,
      -9716374068, -22, -3012589780, -112104, -16,
      -104, -72, -125122, -3822, -1225, -114, -3912464, -111,
      -115, -112, -49, -2453, -3485, -2356, -82, -2615104,
      541, -31623268, -17100, -58842733, -54, -66, -125,
      55, -2, -8932, -119122, -73, -25, -36105, -128853, -128,
      276, -719, -56, -12830112, -59, -4896, -370009,
      -11228, -1171006412758113, -5813960, -10946,
      705080103, -8856, -8613960, -1094667114, -112,
      95, -74498449, -74, -721596280655800, -36,
      8204031081, -58, -95, -63, -84018101, -56, -7487,
      10563931, -32, -43, -32950, -288746, -12528, -61,
      -117, -4810704, -10311419, -105, -65, -98117, -6032,
      -63, -84018101, -116, -74451, -151, -570, -29, -116,
      26, -6413892, -1161011117912411383, -6, -688,
      37, -36, -83, -4, -93, -410946556, -81073, -10533,
      -7163, -57, -40, -36822826, -6413892, -117100,
      -1137171113, -213960, -109466911447, -41, -99,
      -72, -676, -80073, -107, -6372, -64, -113, -83997253,
      97, -66557, -6760, -38, -26, -63, -781051111285110,
      101, -9558, -12816107, -12590, -60300103264,
      67, -32, -54, -41, -1031136, -55, -9245, -6385, -71, -106,
      -34, -22055, -79, -36, -2862, -95, -6897, -73, -41, -70,
      -122, -13117, -5094, -2232802177, -39604862,
      101361106, -1048032, -68, -12564, -751001791,
      -7890, -67, -42245527, -39610, -5663, -40, -71, -95,
      -12449743737, -83118, -1813, -7930, -96, -12680,
      775319, -32, -47, -121, -103104, -1228289, -195692,
      45, -96, -7342, -12816109, -120, -11418, -126105, -88,
      12670, -127, -56, -2448, -43, -3620, -25, -48, -60, -115, -4,
      -98, -42, -31, -848, -35, -1359, -96, -36111646965,
      -12680, -8510422, -4897109, -42, -11471112, -106,
      -58, -51610448828, -19, -74, -36, -81, -100, -56, -122,
      8534, -111, -37125, -8310365, -89125, -30, -1536, -20,
      -581, -636827, -17, -89, -833, -63, -8933, -246607,
      50452, -56176, -99, -9, -117, -60, -109, -77, -191225,
      149611011471, -921173910793, -5010549110,
      -758046, -125, -68, -18, -1258060101, -1116, -7610,
      48, -96651056, -12027868, -77, -109, -5990, -6416,
      106, -61, -12, -2617261054, -5340, -8816, -14124,
      5232, -3913, -117661363, -111, -80, -96651176103,
      -11, -12010454, -491169265, -102, -84, -125501287,
      -1096764, -124106, -22, -221228, -24, -48, -4810994,
      -22, -48, -12510, -9675, -1201739, -11910465, -92,
      -11068362799, -87, -73, -96, -56, -42, -85181283,
      -22028112034, -112, -6, -8152, -64424, -8800,
      140, -10439324423, -98, -125644003, -12838,
      22, -569513, -252449800028148, -58, -28, -38,
      -11342, -12521001, -801970, -2473, -46, -1380,
      -32, -5964001087, -94, -37, -127, -130127, -12521,
      001, -6430, -118, -18, -124, -1241211221284007,
      07819, -81, -3299, -5665, -12522001, -643011,
      11064117002, -10648106256, -102991261553,
      3765, -81, -8, -30104, -36, -75, -8, -98822824, -880,
      013, -128, -1049193, -20, -41, -97, -32, -596400112,
      7, -94, -693156, -9894, -12521001, -642477, -96,
      -39, -1265, -1254186, -795814, -5687102, -112105,
      -5018, -42119110, -54, -9661, -1, -8735155, -14,
      8610880111, -5, -18, -1105534112, -43114, -12361,
      63932, -1121288736432, -5683, -336, -82, -1,
      -60, -86, -31, -63, -88, -409873, -99, -7271275963,
      38, -11012111, -924, -39, -849, -11174, -1125128,
      -18, -90, -6437680, -54, -38, -51106, -9373, -8058,
      5011984, -11647110123, -10, -604564510481,
      -11610615126, -40, -404810142, -3010990, -1669,
      123, -81, -4761120091478117, -114, -67612,
      -32001829108, -111, -2829113, -12556004,
      -128, -1249911992878565, -1000026410653,
      -11231101, -803013, -35, -8085, -86, -95, -63, -109, -1,
      117, -46, -3846, -94, -701276, -112001191124, -82,
      391546, -11365, -920029, -12812719, -67, -4, -112,
      -82, -1276134000, -182, -15108, -81, -402949,
      -1257200590, -70999, -61, -106, -9165, -11231,
      102, -442762, -11811665, -920029, -6411765, -100,
      0026412227, -111, -127, -35, -7533, -63, -808, -92,
      34, -40, -5286, -70, -16108001014, -82122114,
      -114, -8165, -1000026411526, -113, -107, -98, -115,
      -46, -95, -63, -710028, -1288765, -123, -57, -69, -22,
      1249, -3211865, -128247, -128, -96, -12727, -128,
      101, -12273613, -93, -96, -50, -2989, -316, -11400,
      29, -9648, -9665, -76, -47230, -7932, -563259, -32,
      609623, -48110, -12450, -80, -127116, -126, -8910025,
      -1280120157251119, -745232, -38, -8, -94, -705,
      65, -1233016104, -9601, -3634213, -112712426,
      -122, -645, -22, -47412068, -102, -48991171736,
      -72, -55, -17, -12054115, -83, -3736, -4615, -85, -88,
      50112, -9110465, -1104322, -1227278310465,
      -114, -126, -105, -64, -119, -33105, -120, -7176065, -81,
      -99, -5482133788180107, -2576, -122, -1250, -60,
      23, -2810, -17, -9742, -24, -1251120056, -128, -76,
      -12532, -43, -89, -9227, -6550, -99, -1129610, -3240,
      -967249, -107576, -34, -109104405112686764,
      -1289811, -7812, -6416247, -10825, -64009,
      -128, -16109720014, -4830, -205655, -23743,
      -96, -54, -29, -35976, -88691384969, -46, -6, -127,
      1468, -125, -3480103000362581211053, -44,
      80110, -112112, -54, -125127, -33, -408032, -68, -125,
      59, -18, -7436250007, -663, -1413, -1, -1231,
      10464, -11846, -1051002413210414, -12055320,
      3, -11215, -298584, -1275, -120965, -112000123,
      -326332, -38, -5712755, -4424, -974018, -4, -125,
      10556, -15958096, -6816, -931225110, -884032,
      -6420113, -11611, -598, -6932, -64120, -64111,
      64, -83, -43710024, -128, -96881210453, -4000,
      -1247, -64, -118, -33, -106, -102, -13, -84065, -10000,
      0, -10497250135612665, -70, -4, -6, -49, -8850,
      112, -39, -59, -1156, -831, -131, -530, -8, -1253713,
      34, -4116107, -25116, -122, -1250, -607, -16, -118102,
      102, -36, -66, -118065, -67, -1, -301012, -997494, -48,
      110, -3110810465, -102, -87103, -60834, -10036, -2,
      -125124, -84, -5, -97169843, -46273412127, -101,
      12764, -80, -47, -16, -19853, -3388, -8, -1252010919,
      95, -48111, -111, -1, -1176613, -579263, -9693, -104,
      -99119, -602484, -1682, -8, -1253802, -3816103,
      -116101, -192, -18110, -266824, -117, -98, -56, -1255,
      -64, -35, -11296403263, -1028915119, -12211212,
      32, -38, -6870, -11091, -114, -6811121696, -65, -23,
      -1232137118, -36104, -12746, -26, -117, -92, -1936,
      1020, -128, -6461, -618487, -737432, -24501110,
      11157, -79, -36, -28109324422106, -32, -4217, -42,
      -29, -104, -3774105, -73, -9, -48112, -35, -8210711973,
      10, -3378, -4, -79, -9796, -54, -1454, -12858978111,
      43, -50, -37, -5364, -124014, -10365, -41, -127853,
      6, -146565, -97, -48115113, -51, -744250825740,
      -86, -53, -100, -41, -66, -74106, -12582116, -39, -4838,
      511071214488, -2834964, -78475118, -641696,
      4, -127, -9645, -1108814, -313065, -65, -1281025,
      44, -6181, -40, -163, -85, -1000206, -12349, -63,
      -107141571, -169919, -81, -37, -102, -15, -3732, -21,
      -76, -91, -8191, -119, -488, -77, -2026, -49, -96, -5423,
      112, -72, -41, -3564853111410265, -123, -35, -52,
      -945524, -7, -45, -72, -75, -1230022, -64111, -162,
      1397, -4648, -96650864032, -12021, -124, -11546,
      5429, -6911880, -969611, -326020, -94259953,
      97, -125891, -482101113, -54, -128, -20010, -85, -70,
      -117503216758446, -99, -38, -53, -519, -59, -59,
      522512116011927, -114, -10839214, -111, -26116,
      64213121, -10410563, -11558, -42122, -125106, -15,
      25, -1129935, -3285, -96};

  private static final CompressedGeometryHeader cgHeader;

  static {
    cgHeader = new CompressedGeometryHeader();
    cgHeader.majorVersionNumber = 1;
    cgHeader.minorVersionNumber = 0;
    cgHeader.minorMinorVersionNumber = 1;
    cgHeader.bufferType = CompressedGeometryHeader.TRIANGLE_BUFFER;
    cgHeader.bufferDataPresent = CompressedGeometryHeader.NORMAL_IN_BUFFER;
    cgHeader.start = 0;
    cgHeader.size = cgData.length;
  }
}


           
       
Related examples in the same category
1. Navigation around the sceneNavigation around the scene
2. This is our first simple program that creates a cubeThis is our first simple program that creates a cube
3. Class Drag
4. Oriented TestOriented Test
5. Oriented Pt TestOriented Pt Test
6. Improved mouse behaviorsImproved mouse behaviors
7. Demonstrate the use of the mouse utility classesDemonstrate the use of the mouse utility classes
8. This application demonstrates the use of a billboard nodeThis application demonstrates the use of a billboard node
9. MouseBehaviorApp renders a single, interactively rotatable,translatable, and zoomable ColorCube objectMouseBehaviorApp renders a single, interactively rotatable,translatable, and zoomable ColorCube object
10. MouseRotate2App renders a single, interactively rotatable cubeMouseRotate2App renders a single, interactively rotatable cube
11. MouseNavigatorApp renders a single, interactively rotatable, traslatable, and zoomable ColorCube objectMouseNavigatorApp renders a single, interactively rotatable, traslatable, and zoomable ColorCube object
12. KeyNavigatorApp renders a simple landscapeKeyNavigatorApp renders a simple landscape
13. Rotate when any key is pressedRotate when any key is pressed
14. PickCallbackApp renders two interactively rotatable cubesPickCallbackApp renders two interactively rotatable cubes
15. MouseRotateApp renders a single, interactively rotatable cubeMouseRotateApp renders a single, interactively rotatable cube
16. MousePickApp renders two interactively rotatable cubesMousePickApp renders two interactively rotatable cubes
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.