KWStyle - itkHexahedronCellTopology.cxx
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkHexahedronCellTopology.cxx.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:36 $
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 "itkHexahedronCellTopology.h"
19
20 namespace itk
21 {
22
23
24 /**
25  * The hexahedron's topology data: Edges.
26  */
27 const int
28 HexahedronCellTopology
29 ::m_Edges[12][2] = { {0,1}, {1,2}, {3,2}, {0,3}, 
30 IND *********************{4,5}, {5,6}, {7,6}, {4,7},
31 IND,IND *********************{0,4}, {1,5}, {3,7}, {2,6} };
32
33 /**
34  * The hexahedron's topology data: Faces.
35  */
36 const int
37 HexahedronCellTopology
38 ::m_Faces[6][4] = { {0,4,7,3}, {1,2,6,5},
39 IND ********************{0,1,5,4}, {3,7,6,2},
40 IND,IND ********************{0,3,2,1}, {4,5,6,7} };
41
42
43 EML
44 HexahedronCellTopology
45 ::HexahedronCellTopology()
46 {
47 }
48
49 HexahedronCellTopology
50 ::~HexahedronCellTopology()
51 {
52 }
53
54
55 // end namespace itk
56
57 EOF

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