22 lines
460 B
Bash
Executable File
22 lines
460 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
rm -rf constant/internalDelaunayVertices
|
|
rm -f constant/geometry/*_orient*
|
|
rm -rf constant/polyMesh
|
|
rm -rf constant/tetDualMesh
|
|
|
|
rm -f snapToSurface?.obj tetsToSnapTo.obj
|
|
|
|
rm -f domain coneAndSphere
|
|
|
|
rm -rf 0
|
|
|
|
cleanCase
|
|
cleanExplicitFeatures
|
|
|
|
#------------------------------------------------------------------------------
|