Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/bFTGL/src/FTPoint.cpp')
-rwxr-xr-xextern/bFTGL/src/FTPoint.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/extern/bFTGL/src/FTPoint.cpp b/extern/bFTGL/src/FTPoint.cpp
new file mode 100755
index 00000000000..e4678bc9564
--- /dev/null
+++ b/extern/bFTGL/src/FTPoint.cpp
@@ -0,0 +1,14 @@
+#include "FTPoint.h"
+
+
+bool operator == ( const FTPoint &a, const FTPoint &b)
+{
+ return((a.x == b.x) && (a.y == b.y) && (a.z == b.z));
+}
+
+bool operator != ( const FTPoint &a, const FTPoint &b)
+{
+ return((a.x != b.x) || (a.y != b.y) || (a.z != b.z));
+}
+
+