Skip to content

Instantly share code, notes, and snippets.

@tudorjnu
Created May 21, 2023 08:56
Show Gist options
  • Select an option

  • Save tudorjnu/eaf0b86604ac207b8041cc0da4ef2b03 to your computer and use it in GitHub Desktop.

Select an option

Save tudorjnu/eaf0b86604ac207b8041cc0da4ef2b03 to your computer and use it in GitHub Desktop.
downloads and installs v-hacd
set -xe
# remove any copies
rm -f testVHACD
# grab the VHACD (convex segmenter) binary
wget https://github.com/mikedh/v-hacd-1/raw/master/bin/linux/testVHACD
# check the hash of the downloaded file
echo "e1e79b2c1b274a39950ffc48807ecb0c81a2192e7d0993c686da90bd33985130 testVHACD" | sha256sum --check
# make it executable
chmod +x testVHACD
# move it into PATH
mv testVHACD /usr/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment