| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkQuadrilateralCellTopology.h.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:46 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 13 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 |
|
PURPOSE. See the above copyright notices for more information. |
| 15 |
|
|
| 16 |
|
=========================================================================*/ |
| 17 |
|
#ifndef __itkQuadrilateralCellTopology_h |
| 18 |
|
#define __itkQuadrilateralCellTopology_h |
| 19 |
|
#include "itkWin32Header.h" |
| 20 |
|
|
| 21 |
|
namespace itk |
| 22 |
|
{ |
| 23 |
|
|
| 24 |
|
/** \class QuadrilateralCellTopology |
| 25 |
|
* QuadrilateralCellTopology holds data defining the topological |
| 26 |
|
* connections of the vertices and edges of an Quadrilateral Cell. |
| 27 |
|
* |
| 28 |
|
* This class is used to localize static variables out of .txx |
| 29 |
|
* files. This prevents multiple definition of static variables. |
| 30 |
|
* |
| 31 |
|
* \ingroup MeshObjects |
| 32 |
|
*/ |
| 33 |
|
|
| 34 |
|
class ITKCommon_EXPORT QuadrilateralCellTopology |
| 35 |
|
{ |
| 36 |
|
protected: |
| 37 |
|
|
| 38 |
|
/** Quadrilateral topology data. */ |
| 39 |
|
static const int m_Edges[4][2]; |
| 40 |
|
|
| 41 |
|
public: |
| 42 |
|
QuadrilateralCellTopology(); |
| 43 |
|
~QuadrilateralCellTopology(); |
| 44 |
|
|
| 45 |
|
}; |
| 46 |
|
|
| 47 |
|
} // end namespace itk |
| 48 |
|
|
| 49 |
|
|
| 50 |
|
#endif |
| 51 |
|
|