This commit is contained in:
IDONTSUDO 2023-08-28 15:05:41 +03:00 committed by Mark Voltov
parent 871d9d735e
commit fe797ebeeb

View file

@ -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))