Formatting
This commit is contained in:
parent
69b00bd908
commit
fbf55d17ea
3 changed files with 8 additions and 8 deletions
|
@ -215,6 +215,7 @@ private:
|
|||
cellList& cells
|
||||
);
|
||||
|
||||
|
||||
public:
|
||||
|
||||
// Public typedefs
|
||||
|
@ -291,6 +292,7 @@ public:
|
|||
const bool syncPar = true
|
||||
);
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
virtual ~polyMesh();
|
||||
|
@ -548,13 +550,11 @@ public:
|
|||
//- Remove all files from mesh instance()
|
||||
void removeFiles() const;
|
||||
|
||||
|
||||
// Helper functions
|
||||
|
||||
//- Find cell enclosing this location (-1 if not in mesh)
|
||||
label findCell
|
||||
(
|
||||
const point&
|
||||
) const;
|
||||
label findCell(const point&) const;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ Foam::labelList Foam::polyMesh::facePatchFaceCells
|
|||
}
|
||||
|
||||
|
||||
//- Set faces_, calculate cells and patchStarts.
|
||||
// Set faces, calculate cells and patchStarts.
|
||||
void Foam::polyMesh::setTopology
|
||||
(
|
||||
const cellShapeList& cellsAsShapes,
|
||||
|
@ -584,7 +584,7 @@ Foam::polyMesh::polyMesh
|
|||
|
||||
// Warning: Patches can only be added once the face list is
|
||||
// completed, as they hold a subList of the face list
|
||||
forAll(boundaryFaces, patchI)
|
||||
forAll (boundaryFaces, patchI)
|
||||
{
|
||||
// add the patch to the list
|
||||
boundary_.set
|
||||
|
@ -869,7 +869,7 @@ Foam::polyMesh::polyMesh
|
|||
|
||||
// Warning: Patches can only be added once the face list is
|
||||
// completed, as they hold a subList of the face list
|
||||
forAll(boundaryDicts, patchI)
|
||||
forAll (boundaryDicts, patchI)
|
||||
{
|
||||
dictionary patchDict(boundaryDicts[patchI]);
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@ void Foam::preservePatchTypes
|
|||
}
|
||||
}
|
||||
|
||||
forAll(patchNames, patchi)
|
||||
forAll (patchNames, patchi)
|
||||
{
|
||||
if (patchDictionary.found(patchNames[patchi]))
|
||||
{
|
||||
|
|
Reference in a new issue