home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / FourByFour / Cube.java.z / Cube.java
Encoding:
Java Source  |  2003-08-08  |  4.7 KB  |  127 lines

  1. /*
  2.  *    @(#)Cube.java 1.9 02/04/01 15:03:30
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.applet.Applet;
  41. import java.awt.event.*;
  42. import javax.media.j3d.*;
  43. import javax.vecmath.*;
  44.  
  45. public class Cube extends Object {
  46.  
  47.    private Shape3D shape3D;
  48.  
  49.    private static final float[] verts = {
  50.    // Front Face
  51.       1.0f, -1.0f,  1.0f,     1.0f,  1.0f,  1.0f,
  52.      -1.0f,  1.0f,  1.0f,    -1.0f, -1.0f,  1.0f,
  53.    // Back Face
  54.      -1.0f, -1.0f, -1.0f,    -1.0f,  1.0f, -1.0f,
  55.       1.0f,  1.0f, -1.0f,     1.0f, -1.0f, -1.0f,
  56.    // Right Face
  57.       1.0f, -1.0f, -1.0f,     1.0f,  1.0f, -1.0f,
  58.       1.0f,  1.0f,  1.0f,     1.0f, -1.0f,  1.0f,
  59.    // Left Face
  60.      -1.0f, -1.0f,  1.0f,    -1.0f,  1.0f,  1.0f,
  61.      -1.0f,  1.0f, -1.0f,    -1.0f, -1.0f, -1.0f,
  62.    // Top Face
  63.       1.0f,  1.0f,  1.0f,     1.0f,  1.0f, -1.0f,
  64.      -1.0f,  1.0f, -1.0f,    -1.0f,  1.0f,  1.0f,
  65.    // Bottom Face
  66.      -1.0f, -1.0f,  1.0f,    -1.0f, -1.0f, -1.0f,
  67.       1.0f, -1.0f, -1.0f,     1.0f, -1.0f,  1.0f,
  68.    };
  69.  
  70.    private static final float[] normals = {
  71.    // Front Face
  72.       0.0f,  0.0f,  1.0f,     0.0f,  0.0f,  1.0f,
  73.       0.0f,  0.0f,  1.0f,     0.0f,  0.0f,  1.0f,
  74.    // Back Face
  75.       0.0f,  0.0f, -1.0f,     0.0f,  0.0f, -1.0f,
  76.       0.0f,  0.0f, -1.0f,     0.0f,  0.0f, -1.0f,
  77.    // Right Face
  78.       1.0f,  0.0f,  0.0f,     1.0f,  0.0f,  0.0f,
  79.       1.0f,  0.0f,  0.0f,     1.0f,  0.0f,  0.0f,
  80.    // Left Face
  81.      -1.0f,  0.0f,  0.0f,    -1.0f,  0.0f,  0.0f,
  82.      -1.0f,  0.0f,  0.0f,    -1.0f,  0.0f,  0.0f,
  83.    // Top Face
  84.       0.0f,  1.0f,  0.0f,     0.0f,  1.0f,  0.0f,
  85.       0.0f,  1.0f,  0.0f,     0.0f,  1.0f,  0.0f,
  86.    // Bottom Face
  87.       0.0f, -1.0f,  0.0f,     0.0f, -1.0f,  0.0f,
  88.       0.0f, -1.0f,  0.0f,     0.0f, -1.0f,  0.0f,
  89.    };
  90.  
  91.    public Cube(Appearance appearance) {
  92.  
  93.       QuadArray quadArray = new QuadArray(24, QuadArray.COORDINATES |
  94.                                               QuadArray.NORMALS |
  95.                                               QuadArray.TEXTURE_COORDINATE_2);
  96.       quadArray.setCoordinates(0, verts);
  97.       quadArray.setNormals(0, normals);
  98.  
  99.       shape3D = new Shape3D(quadArray, appearance);
  100.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
  101.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
  102.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
  103.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
  104.    }
  105.  
  106.    public Cube(Appearance appearance, float size) {
  107.  
  108.       QuadArray quadArray = new QuadArray(24, QuadArray.COORDINATES | 
  109.                                               QuadArray.NORMALS);
  110.       for (int i=0; i<72; i++) 
  111.          verts[i] *= size;
  112.  
  113.       quadArray.setCoordinates(0, verts);
  114.       quadArray.setNormals(0, normals);
  115.  
  116.       shape3D = new Shape3D(quadArray, appearance);
  117.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
  118.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
  119.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
  120.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
  121.    }
  122.  
  123.    public Shape3D getChild() {
  124.       return shape3D;
  125.    }
  126. }
  127.