17 lines
603 B
Bash
Executable File
17 lines
603 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Generate aligned points (in constant/internalDelaunayVertices) and a
|
|
# mesh from that.
|
|
runApplication surfaceFeatureExtract constant/triSurface/coneAndSphere.obj coneAndSphere -includedAngle 125
|
|
runApplication surfaceFeatureExtract constant/triSurface/domain.stl domain -includedAngle 125
|
|
runApplication cvMesh
|
|
|
|
# Generate some sets for a bit of mesh inspection
|
|
runApplication topoSet
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|