From a56c2836402191a9e6299b6af6c93b5fbc5e656b Mon Sep 17 00:00:00 2001 From: Remy Alcouffe Date: Mon, 27 Sep 2021 14:03:24 +0200 Subject: [PATCH] renaming --- decimate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/decimate.py b/decimate.py index 23e1a71..52628ec 100755 --- a/decimate.py +++ b/decimate.py @@ -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)