Files Classes Functions Hierarchy
#include <simplexface.h>
Public Member Functions | |
| simplexface () | |
| simplexface (uintc _id, uintc _face) | |
| bool const | operator< (simplexface const &tf) const |
| bool const | operator== (simplexface const &tf) const |
| simplexface & | operator= (simplexface const &tf) |
| ostream & | print (ostream &os) const |
Public Attributes | |
| uint | id |
| uint | face |
Definition at line 14 of file simplexface.h.
| simplexface::simplexface | ( | ) |
| bool const simplexface::operator< | ( | simplexface const & | tf | ) | const |
Definition at line 29 of file simplexface.cpp.
00030 { 00031 if (id!=tf.id) 00032 return id < tf.id; 00033 00034 return face < tf.face; 00035 }
| simplexface & simplexface::operator= | ( | simplexface const & | tf | ) |
Definition at line 18 of file simplexface.cpp.
00021 { 00022 id = tf.id; 00023 face = tf.face; 00024 00025 return *this; 00026 }
| bool const simplexface::operator== | ( | simplexface const & | tf | ) | const |
Definition at line 38 of file simplexface.cpp.
00039 { 00040 if (id!=tf.id) 00041 return false; 00042 00043 if (face!=tf.face) 00044 return false; 00045 00046 return true; 00047 }
Definition at line 51 of file simplexface.cpp.
References face.
Referenced by operator<<().
00052 { 00053 return os << id << " " << face; 00054 }
Definition at line 19 of file simplexface.h.
Referenced by d3tess::cpsimplexfaceset(), d4fan::eval(), d3fan::eval(), operator<(), operator==(), and print().
Definition at line 18 of file simplexface.h.
Referenced by d3tess::cpsimplexfaceset(), d4fan::eval(), operator<(), and operator==().
1.5.8