#include "tMemManager.h"
#include "tList.h"
#include "eCoord.h"
#include "tHeap.h"
#include <iostream>
#include "eWall.h"
Go to the source code of this file.
Classes | |
class | eDual |
class | eHalfEdge |
class | ePoint |
class | eFace |
Enumerations | |
enum | ePATH_ORIGIN { PATH_NEXT = 0, PATH_PREV = 1, PATH_OTHER_NEXT = 2, PATH_PREV_OTHER = 3, PATH_START = 4, PATH_CLOSED = 8, PATH_CLOSED_START = 12, PATH_NONE = 16 } |
Functions | |
std::ostream & | operator<< (std::ostream &s, const ePoint &x) |
std::ostream & | operator<< (std::ostream &s, const eHalfEdge &x) |
std::ostream & | operator<< (std::ostream &s, const eFace &x) |
Variables | |
int | se_debugExt |
enum ePATH_ORIGIN |
PATH_NEXT | |
PATH_PREV | |
PATH_OTHER_NEXT | |
PATH_PREV_OTHER | |
PATH_START | |
PATH_CLOSED | |
PATH_CLOSED_START | |
PATH_NONE |
Definition at line 78 of file eTess2.h.
00078 { PATH_NEXT=0, PATH_PREV=1, PATH_OTHER_NEXT=2, PATH_PREV_OTHER=3, 00079 PATH_START=4, PATH_CLOSED=8, PATH_CLOSED_START=12, PATH_NONE=16}
std::ostream& operator<< | ( | std::ostream & | s, | |
const eFace & | x | |||
) | [inline] |
Definition at line 432 of file eTess2.h.
References eFace::Print().
00432 {x.Print(s);return s;}
std::ostream& operator<< | ( | std::ostream & | s, | |
const eHalfEdge & | x | |||
) | [inline] |
Definition at line 431 of file eTess2.h.
References eHalfEdge::Print().
00431 {x.Print(s);return s;}
std::ostream& operator<< | ( | std::ostream & | s, | |
const ePoint & | x | |||
) | [inline] |
Definition at line 430 of file eTess2.h.
References ePoint::Print().
00430 {x.Print(s);return s;}
int se_debugExt |