mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- aspect ratio and cellDeterminant do not use 3rd direction - wedges are properly check for having opposite one
22 lines
412 B
C++
22 lines
412 B
C++
#include "label.H"
|
|
#include "HashSet.H"
|
|
#include "labelVector.H"
|
|
|
|
namespace Foam
|
|
{
|
|
class polyMesh;
|
|
class wedgePolyPatch;
|
|
|
|
label findOppositeWedge(const polyMesh&, const wedgePolyPatch&);
|
|
|
|
bool checkWedges
|
|
(
|
|
const polyMesh&,
|
|
const bool report,
|
|
const Vector<label>&,
|
|
labelHashSet*
|
|
);
|
|
|
|
label checkGeometry(const polyMesh& mesh, const bool allGeometry);
|
|
}
|