-
Notifications
You must be signed in to change notification settings - Fork 0
/
vector.js
executable file
·54 lines (53 loc) · 1.34 KB
/
vector.js
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
class YuanVector extends YuanObject {
// 表示二维点的类
constructor(x, y, z) {
super()
this.x = x
this.y = y
this.z = z
}
interpolate(other, factor) {
let p1 = this
let p2 = other
let x = p1.x + (p2.x - p1.x) * factor
let y = p1.y + (p2.y - p1.y) * factor
let z = p1.z + (p2.z - p1.z) * factor
return YuanVector.new(x, y, z)
}
toString() {
let s = ''
s += this.x.toFixed(3)
s += this.y.toFixed(3)
s += this.z.toFixed(3)
return s
}
multi_num(n) {
return YuanVector.new(this.x * n, this.y * n, this.z * n)
}
sub(v) {
let x = this.x - v.x
let y = this.y - v.y
let z = this.z - v.z
return YuanVector.new(x, y, z)
}
length() {
return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z)
}
normalize() {
let l = this.length()
if (l == 0) {
return this
}
let factor = 1 / l
return this.multi_num(factor)
}
dot(v) {
return this.x * v.x + this.y * v.y + this.z * v.z
}
cross(v) {
let x = this.y * v.z - this.z * v.y
let y = this.z * v.x - this.x * v.z
let z = this.x * v.y - this.y * v.x
return YuanVector.new(x, y, z)
}
}