ESYS13  Revision_
TriangularMesh.h
Go to the documentation of this file.
00001 
00002 /*******************************************************
00003 *
00004 * Copyright (c) 2003-2012 by University of Queensland
00005 * Earth Systems Science Computational Center (ESSCC)
00006 * http://www.uq.edu.au/esscc
00007 *
00008 * Primary Business: Queensland, Australia
00009 * Licensed under the Open Software License version 3.0
00010 * http://www.opensource.org/licenses/osl-3.0.php
00011 *
00012 *******************************************************/
00013 
00014 /**************************************************************/
00015 
00016 /*   Dudley: header file for generates triangular meshes for 1D,2D,3D. */
00017 
00018 /**************************************************************/
00019 
00020 #ifndef INC_DUDLEY_TRIANGULARMESH
00021 #define INC_DUDLEY_TRIANGLULARMESH
00022 
00023 /**************************************************************/
00024 
00025 #include "Mesh.h"
00026 
00027 Dudley_Mesh *Dudley_TriangularMesh_Tri3(dim_t * numElements, double *Length, index_t order, index_t reduced_order,
00028                     bool_t optimize);
00029 Dudley_Mesh *Dudley_TriangularMesh_Tet4(dim_t * numElements, double *Length, index_t order, index_t reduced_order,
00030                     bool_t optimize);
00031 
00032 #endif              /* #ifndef INC_DUDLEY_TRIANGULARMESH */