KWStyle - itkTetrahedronCellTopology.h
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkTetrahedronCellTopology.h.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:48 $
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 __itkTetrahedronCellTopology_h
18 #define __itkTetrahedronCellTopology_h
19
20 #include "itkWin32Header.h"
21
22 namespace itk
23 {
24
25 /** \class TetrahedronCellTopology
26  * TetrahedronCellTopology holds data defining the topological 
27  * connections of the vertices and edges of an Tetrahedron Cell.
28  *
29  * This class is used to localize static variables out of .txx 
30  * files. This prevents multiple definition of static variables.
31  *
32  * \ingroup MeshObjects
33  */
34
35 class ITKCommon_EXPORT TetrahedronCellTopology
36 {
37 protected:
38    
39   /** Tetrahedron topology data. */
40   static const int m_Edges[6][2];
41   static const int m_Faces[4][3];
42     
43 public:
44   TetrahedronCellTopology();
45   ~TetrahedronCellTopology();
46   
47 };
48
49 // end namespace itk
50
51
52 #endif
53

Generated by KWStyle 1.0b on Tuesday January,17 at 02:14:49PM
© Kitware Inc.