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
|
file_to_open = filePath + fileName
|
||||||
|
|
||||||
f = open(file_to_open, 'w')
|
f = open(file_to_open, 'w')
|
||||||
print(f)
|
|
||||||
f.write(data)
|
f.write(data)
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
@ -31,12 +30,12 @@ def main():
|
||||||
|
|
||||||
if args.aspPath == None:
|
if args.aspPath == None:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
|
aspPath = args.aspPath
|
||||||
pathMeshes = 'sdf/meshes/'
|
pathMeshes = 'sdf/meshes/'
|
||||||
permissibleDepth = 0.5
|
permissibleDepth = 0.5
|
||||||
|
|
||||||
trimeshObjects = []
|
trimeshObjects = []
|
||||||
meshes = FS.readFilesTypeFolder(args.aspPath + pathMeshes, '.obj')
|
meshes = FS.readFilesTypeFolder(aspPath + pathMeshes, '.obj')
|
||||||
for el in meshes:
|
for el in meshes:
|
||||||
trimeshObjects.append(trimesh.load(el))
|
trimeshObjects.append(trimesh.load(el))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue