#include <mrm_internal.h>
Inheritance diagram for NL3D::CMRMEdgeFace:

Nevrax France
Definition at line 182 of file mrm_internal.h.
Public Member Functions | |
| CMRMEdgeFace (const CMRMEdge &e, CMRMFaceBuild *f) | |
| CMRMEdgeFace (sint a, sint b, CMRMFaceBuild *f) | |
| CMRMEdgeFace () | |
| bool | operator< (const CMRMEdge &o) const |
| bool | operator== (const CMRMEdge &o) const |
Data Fields | |
| CMRMFaceBuild * | Face |
| sint | v0 |
| sint | v1 |
|
|
|
|
||||||||||||||||
|
Definition at line 186 of file mrm_internal.h. References sint.
|
|
||||||||||||
|
Definition at line 191 of file mrm_internal.h.
|
|
|
Definition at line 159 of file mrm_internal.h. References min, sint, NL3D::CMRMEdge::v0, and NL3D::CMRMEdge::v1.
00160 {
00161 // Order means nothing ( (v0,v1) == (v1,v0) ).... Kick it.
00162 sint max0= std::max(v0,v1);
00163 sint min0= std::min(v0,v1);
00164 sint max1= std::max(o.v0,o.v1);
00165 sint min1= std::min(o.v0,o.v1);
00166 if(max0!=max1)
00167 return max0<max1;
00168 else
00169 return min0<min1;
00170 }
|
|
|
Definition at line 154 of file mrm_internal.h. References NL3D::CMRMEdge::v0, and NL3D::CMRMEdge::v1.
|
|
|
Definition at line 184 of file mrm_internal.h. |
|
|
1.3.6