misprint
This commit is contained in:
parent
871d9d735e
commit
fe797ebeeb
1 changed files with 2 additions and 3 deletions
|
@ -12,7 +12,6 @@ class FS:
|
|||
file_to_open = filePath + fileName
|
||||
|
||||
f = open(file_to_open, 'w')
|
||||
print(f)
|
||||
f.write(data)
|
||||
f.close()
|
||||
|
||||
|
@ -31,12 +30,12 @@ def main():
|
|||
|
||||
if args.aspPath == None:
|
||||
parser.print_help()
|
||||
|
||||
aspPath = args.aspPath
|
||||
pathMeshes = 'sdf/meshes/'
|
||||
permissibleDepth = 0.5
|
||||
|
||||
trimeshObjects = []
|
||||
meshes = FS.readFilesTypeFolder(args.aspPath + pathMeshes, '.obj')
|
||||
meshes = FS.readFilesTypeFolder(aspPath + pathMeshes, '.obj')
|
||||
for el in meshes:
|
||||
trimeshObjects.append(trimesh.load(el))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue