/* *****************************************************************
MESQUITE -- The Mesh Quality Improvement Toolkit
Copyright 2010 Sandia National Laboratories. Developed at the
University of Wisconsin--Madison under SNL contract number
624796. The U.S. Government and the University of Wisconsin
retain certain rights to this software.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
(lgpl.txt) along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(2010) [email protected]
***************************************************************** */
/** \file MeshUtil.hpp
* \author Jason Kraftcheck
*/
#ifndef MSQ_MESH_UTIL_HPP
#define MSQ_MESH_UTIL_HPP
#include "Mesquite.hpp"
namespace MBMesquite
{
class Mesh;
class MsqError;
class SimpleStats;
class Settings;
class PatchData;
/**\brief Miscelanions operations performed on an entire \c Mesh
* without the conveinience of a \c PatchData.
*/
class MeshUtil
{
private:
Mesh* myMesh;
Settings* mySettings;
PatchData* globalPatch;
protected:
PatchData* get_global_patch( MsqError& err );
public:
MeshUtil( Mesh* mesh, Settings* settings = 0 ) : myMesh( mesh ), mySettings( settings ), globalPatch( 0 ) {}<--- Class 'MeshUtil' has a constructor with 1 argument that is not explicit. [+]Class 'MeshUtil' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided.
~MeshUtil();
/**\brief Calcluate statistics for mesh edge lengths
*/
void edge_length_distribution( SimpleStats& result, MsqError& err );
void lambda_distribution( SimpleStats& result, MsqError& err );
/**\brief Given two meshes, check if they are different, return true if they are.
*
*\param mesh1 the first mesh to compare
*\param mesh2 the second mesh to compare
*\param tol a relative tolerance for coordinates
*\param do_print flag for printing differences
*
* \NOTE Only basic mesh properties are checked, number of vertices & elements,
* element connectivity, and coordinates (within the given relative tolerance).
*/
static bool meshes_are_different( Mesh& mesh1,
Mesh& mesh2,
MsqError& err,
double tol = 1.e-5,
bool do_print = false );
};
} // namespace MBMesquite
#endif