2 Copyright (C) 1997,1998,1999
3 Kenji Hiranabe, Eiwa System Management, Inc.
5 This program is free software.
6 Implemented by Kenji Hiranabe(hiranabe@esm.co.jp),
7 conforming to the Java(TM) 3D API specification by Sun Microsystems.
9 Permission to use, copy, modify, distribute and sell this software
10 and its documentation for any purpose is hereby granted without fee,
11 provided that the above copyright notice appear in all copies and
12 that both that copyright notice and this permission notice appear
13 in supporting documentation. Kenji Hiranabe and Eiwa System Management,Inc.
14 makes no representations about the suitability of this software for any
15 purpose. It is provided "AS IS" with NO WARRANTY.
19 import java.io.Serializable;
21 import javajs.api.JSONEncodable;
24 * A generic 3 element tuple that is represented by single precision floating
25 * point x,y and z coordinates.
27 * @version specification 1.1, implementation $Revision: 1.10 $, $Date:
28 * 2006/09/08 20:20:20 $
29 * @author Kenji hiranabe
31 * additions by Bob Hanson hansonr@stolaf.edu 9/30/2012
32 * for unique constructor and method names
33 * for the optimization of compiled JavaScript using Java2Script
35 public abstract class T3 implements JSONEncodable, Serializable {
43 * Sets the value of this tuple to the specified xyz coordinates.
52 public final void set(float x, float y, float z) {
59 * Sets the value of this tuple from the 3 values specified in the array.
62 * the array of length 3 containing xyz in order
64 public final void setA(float t[]) {
65 // ArrayIndexOutOfBounds is thrown if t.length < 3
72 * Sets the value of this tuple to the value of the Tuple3f argument.
75 * the tuple to be copied
77 public final void setT(T3 t1) {
84 * Sets the value of this tuple to the vector sum of tuples t1 and t2.
91 public final void add2(T3 t1, T3 t2) {
98 * Sets the value of this tuple to the vector sum of itself and tuple t1.
103 public final void add(T3 t1) {
110 * Computes the square of the distance between this point and point p1.
114 * @return the square of distance between these two points as a float
116 public final float distanceSquared(T3 p1) {
117 double dx = x - p1.x;
118 double dy = y - p1.y;
119 double dz = z - p1.z;
120 return (float) (dx * dx + dy * dy + dz * dz);
124 * Returns the distance between this point and point p1.
128 * @return the distance between these two points
130 public final float distance(T3 p1) {
131 return (float) Math.sqrt(distanceSquared(p1));
135 * Sets the value of this tuple to the vector difference of tuple t1 and t2
143 public final void sub2(T3 t1, T3 t2) {
150 * Sets the value of this tuple to the vector difference of itself and tuple
151 * t1 (this = this - t1).
156 public final void sub(T3 t1) {
163 * Sets the value of this tuple to the scalar multiplication of itself.
168 public final void scale(float s) {
181 public final void add3(float a, float b, float c) {
189 * {x*p.x, y*p.y, z*p.z) used for three-way scaling
193 public final void scaleT(T3 p) {
201 * Sets the value of this tuple to the scalar multiplication of tuple t1 and
202 * then adds tuple t2 (this = s*t1 + t2).
207 * the tuple to be multipled
209 * the tuple to be added
211 public final void scaleAdd2(float s, T3 t1, T3 t2) {
219 * average of two tuples
224 public void ave(T3 a, T3 b) {
225 x = (a.x + b.x) / 2f;
226 y = (a.y + b.y) / 2f;
227 z = (a.z + b.z) / 2f;
231 * Vector dot product. Was in Vector3f; more useful here, though.
237 public final float dot(T3 v) {
238 return x * v.x + y * v.y + z * v.z;
242 * Returns the squared length of this vector.
243 * Was in Vector3f; more useful here, though.
245 * @return the squared length of this vector
247 public final float lengthSquared() {
248 return x * x + y * y + z * z;
252 * Returns the length of this vector.
253 * Was in Vector3f; more useful here, though.
255 * @return the length of this vector
257 public final float length() {
258 return (float) Math.sqrt(lengthSquared());
262 * Normalizes this vector in place.
263 * Was in Vector3f; more useful here, though.
265 public final void normalize() {
268 // zero-div may occur.
275 * Sets this tuple to be the vector cross product of vectors v1 and v2.
282 public final void cross(T3 v1, T3 v2) {
283 set(v1.y * v2.z - v1.z * v2.y, v1.z * v2.x - v1.x * v2.z, v1.x * v2.y
288 * Returns a hash number based on the data values in this object. Two
289 * different Tuple3f objects with identical data values (ie, returns true for
290 * equals(Tuple3f) ) will return the same hash number. Two vectors with
291 * different data members may return the same hash value, although this is not
295 public int hashCode() {
297 bits = 31L * bits + floatToIntBits(x);
298 bits = 31L * bits + floatToIntBits(y);
299 bits = 31L * bits + floatToIntBits(z);
300 return (int) (bits ^ (bits >> 32));
303 public static int floatToIntBits(float x) {
304 return (x == 0 ? 0 : Float.floatToIntBits(x));
308 * Returns true if all of the data members of Tuple3f t1 are equal to the
309 * corresponding data members in this
312 * the vector with which the comparison is made.
315 public boolean equals(Object t1) {
316 if (!(t1 instanceof T3))
319 return (x == t2.x && y == t2.y && z == t2.z);
323 * Returns a string that contains the values of this Tuple3f. The form is
326 * @return the String representation
329 public String toString() {
330 return "{" + x + ", " + y + ", " + z + "}";
334 public String toJSON() {
335 return "[" + x + "," + y + "," + z + "]";