Curve_3D.cpp File Reference

#include <Curve_3D.h>

Include dependency graph for Curve_3D.cpp:

Go to the source code of this file.

Defines

#define SIZE_BUFFER   1024

Functions

bool operator== (const Curve_3D &curve_1, const Curve_3D &curve_2)
bool operator!= (const Curve_3D &curve_1, const Curve_3D &curve_2)


Define Documentation

#define SIZE_BUFFER   1024


Function Documentation

bool operator!= ( const Curve_3D curve_1,
const Curve_3D curve_2 
)

Definition at line 579 of file Curve_3D.cpp.

00580 {
00581   if(curve_1==curve_2)
00582     return 0;
00583   return 1;
00584 }

bool operator== ( const Curve_3D curve_1,
const Curve_3D curve_2 
)

Definition at line 570 of file Curve_3D.cpp.

References Curve_3D::size().

00571 {
00572   if(curve_1.size()!=curve_2.size())
00573     return 0;
00574   for(int k=0;k<curve_1.size();k++)
00575     if(curve_1[k]!=curve_2[k])
00576       return 0;
00577   return 1;
00578 }

Here is the call graph for this function:


Generated on Mon Mar 30 16:56:07 2009 by  doxygen 1.5.6