-
Notifications
You must be signed in to change notification settings - Fork 7
/
sub.go
101 lines (81 loc) · 2.89 KB
/
sub.go
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
package govec
// V2F
// Sub returns a new vector with each component subtracted from the corresponding component of v2.
func (v V2F[T]) Sub(v2 V2F[T]) V2F[T] {
return V2F[T]{X: v.X - v2.X, Y: v.Y - v2.Y}
}
// SubInPlace modifies vector by subtracting each component from the corresponding component of v2.
func (v *V2F[T]) SubInPlace(v2 V2F[T]) {
v.X -= v2.X
v.Y -= v2.Y
}
// SubComp returns a new vector with each component subtracted from the corresponding values.
func (v V2F[T]) SubComp(x T, y T) V2F[T] {
return V2F[T]{X: v.X - x, Y: v.Y - y}
}
// SubCompInPlace modifies vector by subtracting each component from the corresponding values.
func (v *V2F[T]) SubCompInPlace(x T, y T) {
v.X -= x
v.Y -= y
}
// V3F
// Sub returns a new vector with each component subtracted from the corresponding component of v2.
func (v V3F[T]) Sub(v2 V3F[T]) V3F[T] {
return V3F[T]{X: v.X - v2.X, Y: v.Y - v2.Y, Z: v.Z - v2.Z}
}
// SubInPlace modifies vector by subtracting each component from the corresponding component of v2.
func (v *V3F[T]) SubInPlace(v2 V3F[T]) {
v.X -= v2.X
v.Y -= v2.Y
v.Z -= v2.Z
}
// SubComp returns a new vector with each component subtracted from the corresponding values.
func (v V3F[T]) SubComp(x T, y T, z T) V3F[T] {
return V3F[T]{X: v.X - x, Y: v.Y - y, Z: v.Z - z}
}
// SubCompInPlace modifies vector by subtracting each component from the corresponding values.
func (v *V3F[T]) SubCompInPlace(x T, y T, z T) {
v.X -= x
v.Y -= y
v.Z -= z
}
// V2I
// Sub returns a new vector with each component subtracted from the corresponding component of v2.
func (v V2I[T]) Sub(v2 V2I[T]) V2I[T] {
return V2I[T]{X: v.X - v2.X, Y: v.Y - v2.Y}
}
// SubInPlace modifies vector by subtracting each component from the corresponding component of v2.
func (v *V2I[T]) SubInPlace(v2 V2I[T]) {
v.X -= v2.X
v.Y -= v2.Y
}
// SubComp returns a new vector with each component subtracted from the corresponding values.
func (v V2I[T]) SubComp(x T, y T) V2I[T] {
return V2I[T]{X: v.X - x, Y: v.Y - y}
}
// SubCompInPlace modifies vector by subtracting each component from the corresponding values.
func (v *V2I[T]) SubCompInPlace(x T, y T) {
v.X -= x
v.Y -= y
}
// V3I
// Sub returns a new vector with each component subtracted from the corresponding component of v2.
func (v V3I[T]) Sub(v2 V3I[T]) V3I[T] {
return V3I[T]{X: v.X - v2.X, Y: v.Y - v2.Y, Z: v.Z - v2.Z}
}
// SubInPlace modifies vector by subtracting each component from the corresponding component of v2.
func (v *V3I[T]) SubInPlace(v2 V3I[T]) {
v.X -= v2.X
v.Y -= v2.Y
v.Z -= v2.Z
}
// SubComp returns a new vector with each component subtracted from the corresponding values.
func (v V3I[T]) SubComp(x T, y T, z T) V3I[T] {
return V3I[T]{X: v.X - x, Y: v.Y - y, Z: v.Z - z}
}
// SubCompInPlace modifies vector by subtracting each component from the corresponding values.
func (v *V3I[T]) SubCompInPlace(x T, y T, z T) {
v.X -= x
v.Y -= y
v.Z -= z
}