Any / vae /Irand /island /scripts /embree /embreeConvertAll.sh
kitou's picture
Upload 44 files
03a982d
raw
history blame
2.62 kB
#!/bin/bash
CONVERT=convert
./scripts/embree/embreeConvert.py isHibiscus
./scripts/embree/embreeConvert.py isIronwoodA1
./scripts/embree/embreeConvert.py isKava
./scripts/embree/embreeConvert.py isNaupakaA
./scripts/embree/embreeConvert.py isBayCedarA1
./scripts/embree/embreeConvert.py isGardeniaA
./scripts/embree/embreeConvert.py isHibiscusYoung
./scripts/embree/embreeConvert.py isIronwoodB
./scripts/embree/embreeConvert.py isLavaRocks
./scripts/embree/embreeConvert.py isPalmDead
./scripts/embree/embreeConvert.py isPalmRig
./scripts/embree/embreeConvert.py isPandanusA
./scripts/embree/embreeConvert.py osOcean
./scripts/embree/embreeConvert.py isCoral
./scripts/embree/embreeConvert.py isBeach
./scripts/embree/embreeConvert.py isCoastline
./scripts/embree/embreeConvert.py isDunesA
./scripts/embree/embreeConvert.py isDunesB
./scripts/embree/embreeConvert.py isMountainA
./scripts/embree/embreeConvert.py isMountainB
./scripts/embree/embreeConvert.py island
for f in `find obj -type d`; do echo $f; mkdir xml${f:3}; done
for f in `find obj/ -type f -name "*.obj" `; do echo $f; $CONVERT -reference-materials -i $f -o xml${f:3:-3}xml; done
$CONVERT -i embree/isHibiscus/isHibiscus.xml -o embree/isHibiscus.xml
$CONVERT -i embree/isIronwoodA1/isIronwoodA1.xml -o embree/isIronwoodA1.xml
$CONVERT -i embree/isKava/isKava.xml -o embree/isKava.xml
$CONVERT -i embree/isNaupakaA/isNaupakaA.xml -o embree/isNaupakaA.xml
$CONVERT -i embree/isBayCedarA1/isBayCedarA1.xml -o embree/isBayCedarA1.xml
$CONVERT -i embree/isGardeniaA/isGardeniaA.xml -o embree/isGardeniaA.xml
$CONVERT -i embree/isHibiscusYoung/isHibiscusYoung.xml -o embree/isHibiscusYoung.xml
$CONVERT -i embree/isIronwoodB/isIronwoodB.xml -o embree/isIronwoodB.xml
$CONVERT -i embree/isLavaRocks/isLavaRocks.xml -o embree/isLavaRocks.xml
$CONVERT -i embree/isPalmDead/isPalmDead.xml -o embree/isPalmDead.xml
$CONVERT -i embree/isPalmRig/isPalmRig.xml -o embree/isPalmRig.xml
$CONVERT -i embree/isPandanusA/isPandanusA.xml -o embree/isPandanusA.xml
$CONVERT -i embree/osOcean/osOcean.xml -o embree/osOcean.xml
$CONVERT -i embree/isCoral/isCoral.xml -o embree/isCoral.xml
$CONVERT -i embree/isBeach/isBeach.xml -o embree/isBeach.xml
$CONVERT -i embree/isCoastline/isCoastline.xml -o embree/isCoastline.xml
$CONVERT -i embree/isDunesA/isDunesA.xml -o embree/isDunesA.xml
$CONVERT -i embree/isDunesB/isDunesB.xml -o embree/isDunesB.xml
$CONVERT -i embree/isMountainA/isMountainA.xml -o embree/isMountainA.xml
$CONVERT -i embree/isMountainB/isMountainB.xml -o embree/isMountainB.xml
$CONVERT -i embree/island.xml -flatten-group -o embree/island_flattened.xml