forked from bartvdbraak/blender
15 lines
262 B
C++
15 lines
262 B
C++
|
#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));
|
||
|
}
|
||
|
|
||
|
|