openfoam/applications/utilities/mesh/manipulation
Mark Olesen 722d23f59c ENH: additional methods/operators for boundBox (related to #196)
- Constructor for bounding box of a single point.

- add(boundBox), add(point) ...
  -> Extend box to enclose the second box or point(s).

  Eg,
      bb.add(pt);
  vs.
      bb.min() = Foam::min(bb.min(), pt);
      bb.max() = Foam::max(bb.max(), pt);

Also works with other bounding boxes.
  Eg,
      bb.add(bb2);
      // OR
      bb += bb2;
  vs.
      bb.min() = Foam::min(bb.min(), bb2.min());
      bb.max() = Foam::max(bb.max(), bb2.max());

'+=' operator allows the reduction to be used in parallel
gather/scatter operations.

A global '+' operator is not currently needed.

Note: may be useful in the future to have a 'clear()' method
that resets to a zero-sized (inverted) box.

STYLE: make many bounding box constructors explicit
2017-01-25 19:26:50 +01:00
..
attachMesh ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
autoPatch GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
checkMesh ENH: additional methods/operators for boundBox (related to #196) 2017-01-25 19:26:50 +01:00
createBaffles ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
createPatch ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
deformedGeom GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
flattenMesh GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
insideCells GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
mergeMeshes ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
mergeOrSplitBaffles Merge remote-tracking branch 'origin/feature-cellSetRemove' into develop 2016-12-07 14:13:00 +00:00
mirrorMesh GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
moveDynamicMesh GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
moveEngineMesh ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
moveMesh ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
objToVTK ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
orientFaceZone GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
polyDualMesh ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
refineMesh GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
renumberMesh BUG: redistributePar: remove inconsistent *ProcAddressing. Fixes #351. 2016-12-19 12:58:49 +00:00
rotateMesh ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
setSet MRG: Integrated foundation code 2016-12-12 12:10:29 +00:00
setsToZones GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
singleCellMesh BUG: singleCellMesh: writes constant mesh to 0 directory instead. 2016-08-10 15:49:09 +01:00
splitMesh ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
splitMeshRegions ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
stitchMesh STYLE: use the more succinct forms for argList (issue #307) 2016-11-20 13:06:57 +01:00
subsetMesh ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
topoSet STYLE: correct the documented input names in header files (fixes #360) 2016-12-21 12:15:03 +01:00
transformPoints ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00
zipUpMesh ENH: (further) Doxygen documentation updates for module support 2016-06-27 20:34:19 +01:00