Complete Laplacian smooth modifier gap
Some checks failed
M6 deployable RC / quick (push) Has been cancelled
M6 deployable RC / chromium (push) Has been cancelled
M6 deployable RC / release (push) Has been cancelled

This commit is contained in:
mes123456
2026-08-20 06:22:55 -04:00
parent 1813cb7d1c
commit f82e45bfcb
15 changed files with 169 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import pathlib
import sys
sys.path.insert(0, str(pathlib.Path(__file__).resolve().parent))
from modifier_gap_fixture import generate
if __name__ == "__main__":
arguments = sys.argv[sys.argv.index("--") + 1:]
if len(arguments) != 1:
raise SystemExit("usage: blender -b --python M16-GAP-00074.py -- OUTPUT")
generate(pathlib.Path(arguments[0]), "LAPLACIANSMOOTH", "WebGapLaplacianSmooth")