1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/*
* gleem -- OpenGL Extremely Easy-To-Use Manipulators.
* Copyright (C) 1998-2003 Kenneth B. Russell (kbrussel@alum.mit.edu)
* See the file GLEEM-LICENSE.txt in the doc/ directory for licensing terms.
*/
package gleem.linalg;
/** 3-element double-precision vector */
public class Vec3d {
private double x;
private double y;
private double z;
public Vec3d() {}
public Vec3d(Vec3d arg) {
set(arg);
}
public Vec3d(double x, double y, double z) {
set(x, y, z);
}
public Vec3d copy() {
return new Vec3d(this);
}
/** Convert to single-precision */
public Vec3f toFloat() {
return new Vec3f((float) x, (float) y, (float) z);
}
public void set(Vec3d arg) {
set(arg.x, arg.y, arg.z);
}
public void set(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
/** Sets the ith component, 0 <= i < 3 */
public void set(int i, double val) {
switch (i) {
case 0: x = val; break;
case 1: y = val; break;
case 2: z = val; break;
default: throw new IndexOutOfBoundsException();
}
}
/** Gets the ith component, 0 <= i < 3 */
public double get(int i) {
switch (i) {
case 0: return x;
case 1: return y;
case 2: return z;
default: throw new IndexOutOfBoundsException();
}
}
public double x() { return x; }
public double y() { return y; }
public double z() { return z; }
public void setX(double x) { this.x = x; }
public void setY(double y) { this.y = y; }
public void setZ(double z) { this.z = z; }
public double dot(Vec3d arg) {
return x * arg.x + y * arg.y + z * arg.z;
}
public double length() {
return Math.sqrt(lengthSquared());
}
public double lengthSquared() {
return this.dot(this);
}
public void normalize() {
double len = length();
if (len == 0.0) return;
scale(1.0f / len);
}
/** Returns this * val; creates new vector */
public Vec3d times(double val) {
Vec3d tmp = new Vec3d(this);
tmp.scale(val);
return tmp;
}
/** this = this * val */
public void scale(double val) {
x *= val;
y *= val;
z *= val;
}
/** Returns this + arg; creates new vector */
public Vec3d plus(Vec3d arg) {
Vec3d tmp = new Vec3d();
tmp.add(this, arg);
return tmp;
}
/** this = this + b */
public void add(Vec3d b) {
add(this, b);
}
/** this = a + b */
public void add(Vec3d a, Vec3d b) {
x = a.x + b.x;
y = a.y + b.y;
z = a.z + b.z;
}
/** Returns this + s * arg; creates new vector */
public Vec3d addScaled(double s, Vec3d arg) {
Vec3d tmp = new Vec3d();
tmp.addScaled(this, s, arg);
return tmp;
}
/** this = a + s * b */
public void addScaled(Vec3d a, double s, Vec3d b) {
x = a.x + s * b.x;
y = a.y + s * b.y;
z = a.z + s * b.z;
}
/** Returns this - arg; creates new vector */
public Vec3d minus(Vec3d arg) {
Vec3d tmp = new Vec3d();
tmp.sub(this, arg);
return tmp;
}
/** this = this - b */
public void sub(Vec3d b) {
sub(this, b);
}
/** this = a - b */
public void sub(Vec3d a, Vec3d b) {
x = a.x - b.x;
y = a.y - b.y;
z = a.z - b.z;
}
/** Returns this cross arg; creates new vector */
public Vec3d cross(Vec3d arg) {
Vec3d tmp = new Vec3d();
tmp.cross(this, arg);
return tmp;
}
/** this = a cross b. NOTE: "this" must be a different vector than
both a and b. */
public void cross(Vec3d a, Vec3d b) {
x = a.y * b.z - a.z * b.y;
y = a.z * b.x - a.x * b.z;
z = a.x * b.y - a.y * b.x;
}
public String toString() {
return "(" + x + ", " + y + ", " + z + ")";
}
}
|