openfoam/applications/utilities/surface
Mark Olesen 69918f23c5 consistency update
- OSspecific: chmod() -> chMod(), even although it's not used anywhere

- ListOps get subset() and inplaceSubset() templated on BoolListType

- added UList<bool>::operator[](..) const specialization.
  Returns false (actually pTraits<bool>::zero) for out-of-range elements.
  This lets us use List<bool> with lazy evaluation and no noticeable
  change in performance.

- use rcIndex() and fcIndex() wherever possible.
  Could check if branching or modulus is faster for fcIndex().

- UList and FixedList get 'const T* cdata() const' and 'T* data()' members.
  Similar to the STL front() and std::string::data() methods, they return a
  pointer to the first element without needing to write '&myList[0]', recast
  begin() or violate const-ness.
2009-02-06 20:43:09 +01:00
..
surfaceAdd update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceAutoPatch update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceCheck Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
surfaceClean Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
surfaceCoarsen update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceConvert update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceFeatureConvert Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
surfaceFeatureExtract update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceFind update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceMeshConvert OSspecific: altered file tests 2009-02-06 10:25:41 +01:00
surfaceMeshConvertTesting Merge commit 'OpenCFD/master' into olesenm 2009-02-06 10:40:19 +01:00
surfaceMeshExport OSspecific: altered file tests 2009-02-06 10:25:41 +01:00
surfaceMeshImport OSspecific: altered file tests 2009-02-06 10:25:41 +01:00
surfaceMeshTriangulate update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceOrient update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfacePointMerge update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceRefineRedGreen update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceSmooth update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceSplitByPatch Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
surfaceSplitNonManifolds consistency update 2009-02-06 20:43:09 +01:00
surfaceSubset Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
surfaceToPatch update copyrights for 2009 2008-12-31 19:01:56 +01:00
surfaceTransformPoints Simplify checking of container (List/HashTable, strings) sizes 2009-01-10 20:28:06 +01:00
README checked in surfMesh library code 2008-10-23 16:29:36 +02: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 facses 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