-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vector3.java
executable file
·53 lines (40 loc) · 1.5 KB
/
Vector3.java
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
/* NDKmol - Molecular Viewer on Android NDK
(C) Copyright 2011 - 2012, biochem_fan
This file is part of NDKmol.
NDKmol is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
package jp.sfjp.webglmol.NDKmol;
public class Vector3 {
public float x, y, z;
public Vector3(float x, float y, float z) {
this.x = x;
this.y = y;
this.z = z;
}
public static float dot(Vector3 p, Vector3 q) {
return p.x * q.x + p.y * q.y + p.z * q.z;
}
public static Vector3 cross(Vector3 p, Vector3 q) {
return new Vector3(p.y * q.z - p.z * q.y, p.z * q.x - p.x * q.z, p.x * q.y - p.y * q.x);
}
public Vector3() {
// TODO Auto-generated constructor stub
}
public static double norm(float x, float y, float z) {
return Math.sqrt(x * x + y * y + z * z);
}
public void normalize() {
float norm = (float)norm(this.x, this.y, this.z);
this.x /= norm;
this.y /= norm;
this.z /= norm;
}
}