Skip to content
Snippets Groups Projects
checkGeometry.H 412 B
Newer Older
  • Learn to ignore specific revisions
  • #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);
    }