Go to the source code of this file.
Classes | |
class | itk::QuadEdge |
Base class for the implementation of a quad-edge data structure as proposed in "Guibas and Stolfi 1985". More... | |
Namespaces | |
namespace | itk |
Defines | |
#define | itkQEDebugMacro(x) |
#define | itkQEWarningMacro(x) |
#define | itkQEAccessorsMacro(st, pt, dt) |
#define itkQEAccessorsMacro | ( | st, | ||
pt, | ||||
dt | ||||
) |
Macro that defines overloaded members for the second order topological accessors.
st | Superclass type. | |
pt | Primal edge type. | |
dt | Dual edge type. |
Definition at line 57 of file itkQuadEdge.h.
#define itkQEDebugMacro | ( | x | ) |
{ \ OStringStream itkmsg; \ itkmsg << "Debug: In " __FILE__ ", line " << __LINE__ << "\n" \ << " (" << this << "): " x \ << "\n\n"; \ OutputWindowDisplayDebugText( itkmsg.str( ).c_str( ) ); \ }
Definition at line 29 of file itkQuadEdge.h.
#define itkQEWarningMacro | ( | x | ) |
{ \ OStringStream itkmsg; \ itkmsg << "WARNING: In " __FILE__ ", line " << __LINE__ << "\n" \ << " (" << this << "): " x \ << "\n\n"; \ OutputWindowDisplayWarningText( itkmsg.str( ).c_str( ) ); \ }
Definition at line 37 of file itkQuadEdge.h.