ESScript  Revision_
RectangularMesh.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2013 by University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Open Software License version 3.0
9 * http://www.opensource.org/licenses/osl-3.0.php
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development since 2012 by School of Earth Sciences
13 *
14 *****************************************************************************/
15 
16 
17 /****************************************************************************
18 
19  Finley: declaration of rectangular mesh generators in 1D, 2D, 3D.
20 
21 *****************************************************************************/
22 
23 #ifndef __FINLEY_RECTANGULARMESH_H__
24 #define __FINLEY_RECTANGULARMESH_H__
25 
26 #include "Mesh.h"
27 
28 namespace finley {
29 
30 Mesh* RectangularMesh_Hex20(const int*, const double*, const bool*, int, int, bool, bool, bool, bool);
31 Mesh* RectangularMesh_Hex8(const int*, const double*, const bool*, int, int, bool, bool, bool);
32 Mesh* RectangularMesh_Rec8(const int*, const double*, const bool*, int, int, bool, bool, bool, bool);
33 Mesh* RectangularMesh_Rec4(const int*, const double*, const bool*, int, int, bool, bool, bool);
34 
35 }
36 
37 #endif // __FINLEY_RECTANGULARMESH_H__
38