Add license
Only optionally do the force cutoff thing
Printing and mesh evaluation continues
Convert all files from one format to obj
:
OUT_DIR="./meshes"
FMT="ply"
DIR="./libigl/tutorial/data"
MODELS=$(find "$DIR" -type f -iname "*.$FMT")
for model in $MODELS; do
f=${model##*/}
build/2obj $model "$OUT_DIR"/${f/$FMT/obj}
done
Get scores from the output of find-good-models.sh
:
awk '/file/ {printf "%45s", $0} /score/{print $0}'