openfoam/applications/utilities/mesh/manipulation/stitchMesh
Mark Olesen 72f7d46f23 ENH: add operator[](const word&) as "find-by-name" to some classes
- affected: polyBoundary, fvBoundaryMesh, ZoneMesh, searchableSurfaces

  before:
      const label zoneI = mesh.cellZones().findZoneID(zoneName);
      const cellZone& cz = mesh.cellZones()[zoneI];
  after:
      const cellZone& cz = mesh.cellZones()[zoneName];
2010-04-29 10:12:35 +02:00
..
Make Moved the "generic" BCs into a separate library and included it only in those utilities 2009-08-04 22:13:54 +01:00
stitchMesh.C ENH: add operator[](const word&) as "find-by-name" to some classes 2010-04-29 10:12:35 +02:00