001: /*
002: * $RCSfile: CubeIQA.java,v $
003: *
004: * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions
008: * are met:
009: *
010: * - Redistribution of source code must retain the above copyright
011: * notice, this list of conditions and the following disclaimer.
012: *
013: * - Redistribution in binary form must reproduce the above copyright
014: * notice, this list of conditions and the following disclaimer in
015: * the documentation and/or other materials provided with the
016: * distribution.
017: *
018: * Neither the name of Sun Microsystems, Inc. or the names of
019: * contributors may be used to endorse or promote products derived
020: * from this software without specific prior written permission.
021: *
022: * This software is provided "AS IS," without a warranty of any
023: * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
024: * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
025: * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
026: * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL
027: * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
028: * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
029: * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
030: * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
031: * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
032: * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR
033: * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
034: * POSSIBILITY OF SUCH DAMAGES.
035: *
036: * You acknowledge that this software is not designed, licensed or
037: * intended for use in the design, construction, operation or
038: * maintenance of any nuclear facility.
039: *
040: * $Revision: 1.2 $
041: * $Date: 2007/02/09 17:21:47 $
042: * $State: Exp $
043: */
044:
045: package org.jdesktop.j3d.examples.picking;
046:
047: import javax.media.j3d.*;
048: import javax.vecmath.*;
049:
050: class CubeIQA extends IndexedQuadArray {
051: CubeIQA() {
052: super (8, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 24);
053:
054: Point3f verts[] = new Point3f[8];
055: Color3f colors[] = new Color3f[8];
056:
057: verts[0] = new Point3f(1.0f, 1.0f, 1.0f);
058: verts[1] = new Point3f(-1.0f, 1.0f, 1.0f);
059: verts[2] = new Point3f(-1.0f, -1.0f, 1.0f);
060: verts[3] = new Point3f(1.0f, -1.0f, 1.0f);
061: verts[4] = new Point3f(1.0f, 1.0f, -1.0f);
062: verts[5] = new Point3f(-1.0f, 1.0f, -1.0f);
063: verts[6] = new Point3f(-1.0f, -1.0f, -1.0f);
064: verts[7] = new Point3f(1.0f, -1.0f, -1.0f);
065:
066: colors[0] = new Color3f(1.0f, 0.0f, 0.0f);
067: colors[1] = new Color3f(0.0f, 1.0f, 0.0f);
068: colors[2] = new Color3f(0.0f, 0.0f, 1.0f);
069: colors[3] = new Color3f(1.0f, 1.0f, 0.0f);
070: colors[4] = new Color3f(1.0f, 0.0f, 1.0f);
071: colors[5] = new Color3f(0.0f, 1.0f, 1.0f);
072: colors[6] = new Color3f(0.0f, 1.0f, 1.0f);
073: colors[7] = new Color3f(0.0f, 1.0f, 1.0f);
074:
075: int pntsIndex[] = new int[24];
076: int clrsIndex[] = new int[24];
077:
078: pntsIndex[0] = 0;
079: clrsIndex[0] = 0;
080: pntsIndex[1] = 3;
081: clrsIndex[1] = 0;
082: pntsIndex[2] = 7;
083: clrsIndex[2] = 0;
084: pntsIndex[3] = 4;
085: clrsIndex[3] = 0;
086:
087: pntsIndex[4] = 1;
088: clrsIndex[4] = 1;
089: pntsIndex[5] = 5;
090: clrsIndex[5] = 1;
091: pntsIndex[6] = 6;
092: clrsIndex[6] = 1;
093: pntsIndex[7] = 2;
094: clrsIndex[7] = 1;
095:
096: pntsIndex[8] = 0;
097: clrsIndex[8] = 2;
098: pntsIndex[9] = 4;
099: clrsIndex[9] = 2;
100: pntsIndex[10] = 5;
101: clrsIndex[10] = 2;
102: pntsIndex[11] = 1;
103: clrsIndex[11] = 2;
104:
105: pntsIndex[12] = 3;
106: clrsIndex[12] = 3;
107: pntsIndex[13] = 2;
108: clrsIndex[13] = 3;
109: pntsIndex[14] = 6;
110: clrsIndex[14] = 3;
111: pntsIndex[15] = 7;
112: clrsIndex[15] = 3;
113:
114: pntsIndex[16] = 0;
115: clrsIndex[16] = 4;
116: pntsIndex[17] = 1;
117: clrsIndex[17] = 4;
118: pntsIndex[18] = 2;
119: clrsIndex[18] = 4;
120: pntsIndex[19] = 3;
121: clrsIndex[19] = 4;
122:
123: pntsIndex[20] = 7;
124: clrsIndex[20] = 5;
125: pntsIndex[21] = 6;
126: clrsIndex[21] = 5;
127: pntsIndex[22] = 5;
128: clrsIndex[22] = 5;
129: pntsIndex[23] = 4;
130: clrsIndex[23] = 5;
131:
132: setCoordinates(0, verts);
133: setCoordinateIndices(0, pntsIndex);
134: setColors(0, colors);
135: setColorIndices(0, clrsIndex);
136: }
137: }
|