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

FTPoint.cpp « src « bFTGL « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4678bc9564d87815b92e63c2467e7ff1dcddc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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));
}