-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.coffee
83 lines (63 loc) · 1.22 KB
/
index.coffee
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
calculateLength = (x, y, z) -> Math.sqrt (x * x) + (y * y) + (z * z)
class Vector
constructor: (@x = 0, @y = 0, @z = 0) ->
@isNormalized = undefined
return @
@fromObject: (object) ->
return new Vector(
object.x,
object.y,
object.z
)
@fromArray: (array) ->
return new Vector(
array[0],
array[1],
array[2]
)
toObject: (array) ->
return {
x: @x
y: @y
z: @z
}
toJSON: () -> @toObject()
clone: () -> new Vector @x, @y, @z
add: (vector) ->
@x += vector.x
@y += vector.y
@z += vector.z
return @
subtract: (vector) ->
@x -= vector.x
@y -= vector.y
@z -= vector.z
return @
scaleUniformlyBy: (scalar) ->
@x *= scalar
@y *= scalar
@z *= scalar
return @
scaleBy: ({x = 1, y = 1, z = 1} = {}) ->
@x *= x
@y *= y
@z *= z
return @
length: () -> calculateLength @x, @y, @z
euclideanDistanceTo: (vector) ->
return calculateLength(
@x - vector.x
@y - vector.y
@z - vector.z
)
normalize: () ->
@isNormalized = true
@scaleUniformlyBy 1 / @length()
return @
crossProduct: (vector) ->
return new Vector(
(@y * vector.z) - (@z * vector.y)
(@z * vector.x) - (@x * vector.z)
(@x * vector.y) - (@y * vector.x)
)
module.exports = Vector