erased change obj Y to Z

This commit is contained in:
Pilar 2021-03-16 17:18:57 -04:00
parent 10478cb932
commit 659428c5a4

View File

@ -19,9 +19,6 @@ class Obj(Triangular):
for vertex in scene_dic['vertices']:
for i in range(0, 3):
vertex[i] -= reference_coordinates[i]
aux_variable = vertex[1]
vertex[1] = vertex[2]
vertex[2] = aux_variable
scene = Trimesh(vertices=scene_dic['vertices'], faces=scene_dic['faces'])
obj_file = trimesh.exchange.obj.export_obj(scene)
with open(file_path_out, 'w') as file: