summaryrefslogtreecommitdiff
path: root/graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp')
-rw-r--r--graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp117
1 files changed, 0 insertions, 117 deletions
diff --git a/graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp b/graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp
deleted file mode 100644
index eae7510cbd95..000000000000
--- a/graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp
+++ /dev/null
@@ -1,117 +0,0 @@
-*** src/kernel/base/SFVec3f.cpp.orig Thu Sep 28 13:02:11 2006
---- src/kernel/base/SFVec3f.cpp Thu Sep 28 13:02:37 2006
-***************
-*** 69,85 ****
-
- // operations on vectors
- //overloading of the operators +, -, *
-! bool X3DTK::operator== (const SFVec3f &v1, const SFVec3f &v2)
- {
- return ((v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z));
- }
-
-! bool X3DTK::operator!= (const SFVec3f &v1, const SFVec3f &v2)
- {
- return ((v1.x != v2.x) || (v1.y != v2.y) || (v1.z != v2.z));
- }
-
-! SFVec3f X3DTK::operator+ (const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.x + v2.x;
---- 69,85 ----
-
- // operations on vectors
- //overloading of the operators +, -, *
-! bool operator== (const SFVec3f &v1, const SFVec3f &v2)
- {
- return ((v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z));
- }
-
-! bool operator!= (const SFVec3f &v1, const SFVec3f &v2)
- {
- return ((v1.x != v2.x) || (v1.y != v2.y) || (v1.z != v2.z));
- }
-
-! SFVec3f operator+ (const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.x + v2.x;
-***************
-*** 88,94 ****
- return res;
- }
-
-! SFVec3f X3DTK::operator- (const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.x - v2.x;
---- 88,94 ----
- return res;
- }
-
-! SFVec3f operator- (const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.x - v2.x;
-***************
-*** 97,103 ****
- return res;
- }
-
-! SFVec3f X3DTK::operator- (const SFVec3f &v)
- {
- SFVec3f res;
- res.x = -v.x;
---- 97,103 ----
- return res;
- }
-
-! SFVec3f operator- (const SFVec3f &v)
- {
- SFVec3f res;
- res.x = -v.x;
-***************
-*** 107,118 ****
- }
-
- //scalar product
-! float X3DTK::operator* (const SFVec3f &v1, const SFVec3f &v2)
- {
- return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
- }
-
-! SFVec3f X3DTK::operator* (const float a, const SFVec3f &v)
- {
- SFVec3f res;
- res.x = a * v.x;
---- 107,118 ----
- }
-
- //scalar product
-! float operator* (const SFVec3f &v1, const SFVec3f &v2)
- {
- return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
- }
-
-! SFVec3f operator* (const float a, const SFVec3f &v)
- {
- SFVec3f res;
- res.x = a * v.x;
-***************
-*** 122,128 ****
- }
-
- //crossproduct
-! SFVec3f X3DTK::crossprod(const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.y * v2.z - v1.z * v2.y;
---- 122,128 ----
- }
-
- //crossproduct
-! SFVec3f crossprod(const SFVec3f &v1, const SFVec3f &v2)
- {
- SFVec3f res;
- res.x = v1.y * v2.z - v1.z * v2.y;