- Sep 19, 2018
-
-
Mark OLESEN authored
-
- Sep 18, 2018
-
-
Mark OLESEN authored
- an alternative to distanceSurface (with distance zero) that uses a cell cutting approach instead of an iso-surface.
-
- Sep 19, 2018
-
-
Mark OLESEN authored
- 'signed' input parameter only mandatory for distance > 0. A distance <= 0 is always signed and the input parameter is ignored. - Use normal distance when distance == 0. This has no effect when the surface has no open edges, but improves on rounding issues around the zero crossing when the surface has open edges. This may still need future revisiting.
-
- Sep 14, 2018
-
-
Mark OLESEN authored
- avoid duplicate code by relocating cellZone selection and bounding box sub-selection into cuttingPlane and cuttingSurfaceBaseSelection. Allows reuse by inherited classes (sampledPlane, surfMeshSamplePlane).
-
Mark OLESEN authored
- takes two general actions: 1. orient edge in canonical direction (positive gradient) and detect any edge intersection. 2. edge intersection alpha (0-1) - refactor into a cuttingSurfaceBase intermediate class with the actions as templated parameters rather than function pointers. This allows the use of lambda functions with captures from the caller.
-
Mark OLESEN authored
-
- Sep 18, 2018
-
-
Mark OLESEN authored
- The test condition [ -n "$cur" -a ... ] fails if $cur starts with '-le', which bash interprets as a further test op. Splitting the test condition solves the problem: [ -n "$cur" ] && [ ... ]
-
- Sep 19, 2018
-
-
mattijs authored
-
- Sep 17, 2018
-
-
Andrew Heather authored
-
- Sep 12, 2018
-
-
Mark OLESEN authored
- Since the local edges are oriented according to the gradient, they can also be used to determine the correct face orientation. This generalizes the algorithm for future reuse.
-
- Sep 13, 2018
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- simple check for unique and non-negative point labels
-
- Sep 11, 2018
-
-
Andrew Heather authored
-
- Sep 10, 2018
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- replaces previous pointer conversion
-
Mark OLESEN authored
- uses int, without enclosing brackets.
-
- Sep 06, 2018
-
-
mattijs authored
-
- Sep 05, 2018
-
-
mattijs authored
-
- Aug 30, 2018
- Aug 29, 2018
-
-
mattijs authored
This is not the ultimate fix; it just avoids the loops in cases where mesh 0 is the background.
-
Andrew Heather authored
-
mattijs authored
-
- Aug 28, 2018
-
-
Andrew Heather authored
mapping. Fixes #983
-
- Aug 27, 2018
- Aug 09, 2018
-
-
sergio authored
-
sergio authored
-
sergio authored
-
mattijs authored
Note: this removes the option to reconstruct by setting nDomains to 1. You now have to explicitly use -reconstruct to reconstruct.
-
Andrew Heather authored
-
mattijs authored
-
mattijs authored
-
Mark OLESEN authored
- more consistent with dictionary method naming. The get<> or getList<> returns a value, doesn't read into a existing location.
-
Mark OLESEN authored
-