#include <Curve_3D.h>

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 SIZE_BUFFER 1024 |
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 }

1.5.6