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
|
*** src/kernel/base/SFVec2f.cpp.orig Sun Dec 17 12:38:08 2006
--- src/kernel/base/SFVec2f.cpp Sun Dec 17 12:38:57 2006
***************
*** 60,78 ****
y = P.y;
}
// operations on vectors
//overloading of the operators +, -, *
! bool X3DTK::operator== (const SFVec2f &v1, const SFVec2f &v2)
{
return ((v1.x == v2.x) && (v1.y == v2.y));
}
! bool X3DTK::operator!= (const SFVec2f &v1, const SFVec2f &v2)
{
return ((v1.x != v2.x) || (v1.y != v2.y));
}
! SFVec2f X3DTK::operator+ (const SFVec2f &v1, const SFVec2f &v2)
{
SFVec2f res;
res.x = v1.x + v2.x;
--- 60,79 ----
y = P.y;
}
+ namespace X3DTK {
// operations on vectors
//overloading of the operators +, -, *
! bool operator== (const SFVec2f &v1, const SFVec2f &v2)
{
return ((v1.x == v2.x) && (v1.y == v2.y));
}
! bool operator!= (const SFVec2f &v1, const SFVec2f &v2)
{
return ((v1.x != v2.x) || (v1.y != v2.y));
}
! SFVec2f operator+ (const SFVec2f &v1, const SFVec2f &v2)
{
SFVec2f res;
res.x = v1.x + v2.x;
***************
*** 80,86 ****
return res;
}
! SFVec2f X3DTK::operator- (const SFVec2f &v1, const SFVec2f &v2)
{
SFVec2f res;
res.x = v1.x - v2.x;
--- 81,87 ----
return res;
}
! SFVec2f operator- (const SFVec2f &v1, const SFVec2f &v2)
{
SFVec2f res;
res.x = v1.x - v2.x;
***************
*** 88,94 ****
return res;
}
! SFVec2f X3DTK::operator- (const SFVec2f &v)
{
SFVec2f res;
res.x = -v.x;
--- 89,95 ----
return res;
}
! SFVec2f operator- (const SFVec2f &v)
{
SFVec2f res;
res.x = -v.x;
***************
*** 97,113 ****
}
//scalar product
! float X3DTK::operator* (const SFVec2f &v1, const SFVec2f &v2)
{
return v1.x * v2.x + v1.y * v2.y;
}
! SFVec2f X3DTK::operator* (const float a, const SFVec2f &v)
{
SFVec2f res;
res.x = a * v.x;
res.y = a * v.y;
return res;
}
//norm2
--- 98,115 ----
}
//scalar product
! float operator* (const SFVec2f &v1, const SFVec2f &v2)
{
return v1.x * v2.x + v1.y * v2.y;
}
! SFVec2f operator* (const float a, const SFVec2f &v)
{
SFVec2f res;
res.x = a * v.x;
res.y = a * v.y;
return res;
+ }
}
//norm2
|