~ubuntu-branches/ubuntu/intrepid/blender/intrepid-updates

« back to all changes in this revision

Viewing changes to extern/bFTGL/src/FTPoint.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-08-08 02:45:40 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080808024540-kkjp7ekfivzhuw3l
Tags: 2.46+dfsg-4
* Fix python syntax warning in import_dxf.py, which led to nasty output
  in installation/upgrade logs during byte-compilation, using a patch
  provided by the script author (Closes: #492280):
   - debian/patches/45_fix_python_syntax_warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "FTPoint.h"
2
 
 
3
 
 
4
 
bool operator == ( const FTPoint &a, const FTPoint &b) 
5
 
{
6
 
    return((a.x == b.x) && (a.y == b.y) && (a.z == b.z));
7
 
}
8
 
 
9
 
bool operator != ( const FTPoint &a, const FTPoint &b) 
10
 
{
11
 
    return((a.x != b.x) || (a.y != b.y) || (a.z != b.z));
12
 
}
13
 
 
14