This commit is contained in:
Remy Alcouffe 2021-09-27 14:03:24 +02:00
parent 49531080d6
commit a56c283640
1 changed files with 2 additions and 2 deletions

View File

@ -57,9 +57,9 @@ def main():
"""
np.seterr(invalid = 'raise')
model = Decimater()
model.parse_file('exemple/suzanne.obj')
model.parse_file('example/suzanne.obj')
with open('exemple/suzanne.obja', 'w') as output:
with open('example/suzanne.obja', 'w') as output:
model.contract(output)