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 / PickTest / IcosahedronTSA.java.z / IcosahedronTSA.java
Encoding:
Java Source  |  2003-08-08  |  5.1 KB  |  171 lines

  1. /*
  2.  *    @(#)IcosahedronTSA.java 1.8 02/04/01 15:03:41
  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 javax.media.j3d.*;
  41. import javax.vecmath.*;
  42.  
  43. class IcosahedronTSA extends TriangleStripArray {
  44.   private static final int[] sVertCnt = {
  45.     3, 11, 5, 4, 5, 4
  46.   };
  47.  
  48.   IcosahedronTSA() {
  49.     super(32, GeometryArray.COORDINATES | GeometryArray.COLOR_3, sVertCnt);  
  50.     
  51.     Point3f verts[] = new Point3f[12];
  52.     Color3f colors[] = new Color3f[12];
  53.     
  54.     verts[0] = new Point3f(0.0f,     1.4f,      0.8652f);
  55.     verts[1] = new Point3f(0.0f,     1.4f,     -0.8652f);
  56.     verts[2] = new Point3f(1.4f,     0.8652f,    0.0f);
  57.     verts[3] = new Point3f(1.4f,    -0.8652f,    0.0f);
  58.     verts[4] = new Point3f(0.0f,    -1.4f,     -0.8652f);
  59.     verts[5] = new Point3f(0.0f,    -1.4f,      0.8652f);
  60.     verts[6] = new Point3f(0.8652f,   0.0f,      1.4f);
  61.     verts[7] = new Point3f(-0.8652f,  0.0f,      1.4f);
  62.     verts[8] = new Point3f(0.8652f,   0.0f,     -1.4f);
  63.     verts[9] = new Point3f(-0.8652f,  0.0f,     -1.4f);
  64.     verts[10] = new Point3f(-1.4f,   0.8652f,    0.0f);
  65.     verts[11] = new Point3f(-1.4f,  -0.8652f,    0.0f);
  66.  
  67.     colors[0] = new Color3f(1.0f, 0.0f, 0.0f);
  68.     colors[1] = new Color3f(0.0f, 1.0f, 0.0f);
  69.     colors[2] = new Color3f(0.0f, 0.0f, 1.0f);
  70.     colors[3] = new Color3f(1.0f, 1.0f, 0.0f);
  71.     colors[4] = new Color3f(0.0f, 1.0f, 1.0f);
  72.     colors[5] = new Color3f(1.0f, 0.0f, 1.0f);
  73.     colors[6] = new Color3f(0.0f, 0.5f, 0.0f);
  74.     colors[7] = new Color3f(0.0f, 0.0f, 0.5f);
  75.     colors[8] = new Color3f(0.5f, 0.5f, 0.0f);
  76.     colors[9] = new Color3f(0.0f, 0.5f, 0.5f);
  77.     colors[10] = new Color3f(0.5f, 0.0f, 0.5f);
  78.     colors[11] = new Color3f(0.5f, 0.5f, 0.5f);
  79.     
  80.     Point3f pnts[] = new Point3f[32];
  81.     Color3f clrs[] = new Color3f[32];
  82.     
  83.     pnts[0] = verts[4];
  84.     clrs[0] = colors[4];
  85.     pnts[1] = verts[5];
  86.     clrs[1] = colors[5];
  87.     pnts[2] = verts[11];
  88.     clrs[2] = colors[11];
  89.     
  90.     pnts[3] = verts[11];
  91.     clrs[3] = colors[11];
  92.     pnts[4] = verts[5];
  93.     clrs[4] = colors[5]; 
  94.     pnts[5] = verts[7];
  95.     clrs[5] = colors[7];
  96.  
  97.     pnts[6] = verts[6];
  98.     clrs[6] = colors[6];
  99.  
  100.     pnts[7] = verts[0];
  101.     clrs[7] = colors[0];
  102.  
  103.     pnts[8] = verts[2];
  104.     clrs[8] = colors[2];
  105.  
  106.     pnts[9] = verts[1];
  107.     clrs[9] = colors[1];
  108.  
  109.     pnts[10] = verts[8];
  110.     clrs[10] = colors[8];
  111.  
  112.     pnts[11] = verts[9];
  113.     clrs[11] = colors[9];
  114.  
  115.     pnts[12] = verts[4];
  116.     clrs[12] = colors[4];
  117.  
  118.     pnts[13] = verts[11];
  119.     clrs[13] = colors[11];
  120.     
  121.     pnts[14] = verts[2];
  122.     clrs[14] = colors[2];
  123.     pnts[15] = verts[6];
  124.     clrs[15] = colors[6]; 
  125.     pnts[16] = verts[3];
  126.     clrs[16] = colors[3];
  127.  
  128.     pnts[17] = verts[5];
  129.     clrs[17] = colors[5];
  130.  
  131.     pnts[18] = verts[4];
  132.     clrs[18] = colors[4];
  133.  
  134.     pnts[19] = verts[4];
  135.     clrs[19] = colors[4];
  136.     pnts[20] = verts[8];
  137.     clrs[20] = colors[8]; 
  138.     pnts[21] = verts[3];
  139.     clrs[21] = colors[3];
  140.  
  141.     pnts[22] = verts[2];
  142.     clrs[22] = colors[2];
  143.  
  144.     pnts[23] = verts[0];
  145.     clrs[23] = colors[0];
  146.     pnts[24] = verts[1];
  147.     clrs[24] = colors[1]; 
  148.     pnts[25] = verts[10];
  149.     clrs[25] = colors[10];
  150.  
  151.     pnts[26] = verts[9];
  152.     clrs[26] = colors[9];
  153.  
  154.     pnts[27] = verts[11];
  155.     clrs[27] = colors[11];
  156.  
  157.     pnts[28] = verts[0];
  158.     clrs[28] = colors[0];
  159.     pnts[29] = verts[10];
  160.     clrs[29] = colors[10]; 
  161.     pnts[30] = verts[7];
  162.     clrs[30] = colors[7];
  163.  
  164.     pnts[31] = verts[11];
  165.     clrs[31] = colors[11];
  166.  
  167.     setCoordinates(0, pnts);
  168.     setColors(0, clrs);
  169.   }
  170. }
  171.