KWStyle - itkTetrahedronCellTopology.cxx
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkTetrahedronCellTopology.cxx.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 DEF =========================================================================*/
17
18 #include "itkTetrahedronCellTopology.h"
19
20 namespace itk
21 {
22
23
24 /**
25  * The tetrahedron's topology data: Faces
26  */
27 const int
28 TetrahedronCellTopology
29 ::m_Faces[4][3] = { {0,1,3}, {1,2,3}, {2,0,3}, {0,2,1} };
30
31
32 /**
33  * The tetrahedron's topology data: Faces
34  */
35 const int
36 TetrahedronCellTopology
37 ::m_Edges[6][2] = { {0,1}, {1,2}, {2,0}, {0,3}, {1,3}, {2,3} };
38
39
40 EML
41 TetrahedronCellTopology
42 ::TetrahedronCellTopology()
43 {
44 }
45
46 TetrahedronCellTopology
47 ::~TetrahedronCellTopology()
48 {
49 }
50
51
52 // end namespace itk
53
54 EOF

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