https://github.com/EPFL-LGG/Cshells
Raw File
Tip revision: 77e2afd6b5dec26bddf79ff82d2ff5a1d2d62618 authored by qbecky on 19 March 2024, 14:38:04 UTC
Add representative images
Tip revision: 77e2afd
.gitignore
# Ignore environment files but keep the folder
.venv/*

# Ignore IDE configuration files
.idea
.vscode/

# Ignore system files
.DS_Store
Thumbs.db

# Ignore compiled python files
__pycache__/
*.py[cod]
*$py.class
*.so

# Ignore ipynb checkpoints
.ipynb_checkpoints
*/.ipynb_checkpoints/*

output/*

# Don't ignore .keep files in the repository
!.keep

# ignore heavy files 
models/
data/
outputs/
build/
debug/
ext/
*.png
*.gif
*.tiff
*.mat
*.msh
*.mp4
python/ElasticRods/
python/MeshFEM

# ignore pickled files
*.p
*.npy
back to top