KWStyle - itkTriangleCellTopology.h
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkTriangleCellTopology.h.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:49 $
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 __itkTriangleCellTopology_h
18 #define __itkTriangleCellTopology_h
19 #include "itkWin32Header.h"
20
21 namespace itk
22 {
23
24 /** \class TriangleCellTopology
25  * TriangleCellTopology holds data defining the topological 
26  * connections of the vertices and edges of an Triangle 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 TriangleCellTopology
35 {
36 protected:
37    
38 IND ***/** Triangle topology data. */
39   static const int m_Edges[3][2];
40
41   
42 public:
43   TriangleCellTopology();
44   ~TriangleCellTopology();
45   
46 };
47
48 // end namespace itk
49
50
51 #endif
52

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