openfoam/applications/utilities/surface
Mark Olesen 345a2a42f1 ENH: simplify method names for reading argList options and arguments
- use succincter method names that more closely resemble dictionary
  and HashTable method names. This improves method name consistency
  between classes and also requires less typing effort:

    args.found(optName)        vs.  args.optionFound(optName)
    args.readIfPresent(..)     vs.  args.optionReadIfPresent(..)
    ...
    args.opt<scalar>(optName)  vs.  args.optionRead<scalar>(optName)
    args.read<scalar>(index)   vs.  args.argRead<scalar>(index)

- the older method names forms have been retained for code compatibility,
  but are now deprecated
2018-01-08 15:35:18 +01:00
..
surfaceAdd ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceBooleanFeatures ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceCheck ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceClean ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceCoarsen ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceConvert ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceFeatureConvert ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceFeatureExtract STYLE: rebase edge on labelPair, additional methods in Pair 2017-10-06 20:10:49 +02:00
surfaceFind ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceHookUp ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceInertia ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceInflate ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceLambdaMuSmooth ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceMeshConvert ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceMeshExport ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceMeshImport ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceMeshInfo ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceMeshTriangulate ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceOrient ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfacePatch STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
surfacePointMerge ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceRedistributePar ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceRefineRedGreen STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
surfaceSplitByPatch STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
surfaceSplitByTopology STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
surfaceSplitNonManifolds ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceSubset STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
surfaceToPatch ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
surfaceTransformPoints ENH: simplify method names for reading argList options and arguments 2018-01-08 15:35:18 +01:00
README Enhance edgeMesh to support more formats. 2009-12-11 16:29:55 +01:00

2008-10-23

Contents:

surfaceAdd
- adds to surface files. (but does not intersect or anything)

surfaceBooleanOp
- Boolean operations (add, or, xor) on closed surfaces. Probably not working.

surfaceCheck
- checks surface for incorrect topology. Checks normals of neighbouring faces.

surfaceCoarsen
- Stan Melax coarsening algorithm

surfaceConvert
- Converts surfaces to/from various formats

surfaceFind
- Finds nearest vertex and face to given point.

surfaceMeshTriangulate
- Triangulate external faces of mesh and write as surface.

surfacePointMerge
- Explicit point merge of surface.

surfaceSetOutside
- Orient normals on (closed) surface.

surfaceSmooth
- Laplacian smoothing on surface vertices

surfaceSubset
- Subsets surface

surfaceToPatch
- Applies region information of surfaces to mesh.
  Each external face of mesh gets region number of nearest surface triangle.

-------------------------------------------------------------------------------

surfaceMeshConvert
- Similar to surfaceConvert, but uses surfMesh library